Fix custom javascript interpreter configuration for OSX.
This commit is contained in:
parent
15f12d9b59
commit
424e3f4712
7 changed files with 42 additions and 15 deletions
|
|
@ -29,6 +29,10 @@ public:
|
|||
|
||||
virtual bool RunShell();
|
||||
|
||||
void setModulePath(const std::vector<std::string>& modulePath) {
|
||||
module_path = modulePath;
|
||||
}
|
||||
|
||||
protected:
|
||||
|
||||
virtual bool InitializeEngine() = 0;
|
||||
|
|
@ -42,6 +46,7 @@ protected:
|
|||
protected:
|
||||
|
||||
std::vector<HANDLE> loaded_modules;
|
||||
std::vector<std::string> module_path;
|
||||
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue