Introduced an extra Makefile for the custom javascript interpreter.

This commit is contained in:
Oliver Buchtala 2014-02-26 20:51:38 +01:00
commit b216a739c4
7 changed files with 233 additions and 44 deletions

View file

@ -13,6 +13,11 @@ void print_usage() {
int main(int argc, char* argv[]) {
#if defined(JAVASCRIPT_INTERPRETER_STOP)
std::cout << "Attach your Debugger and press any key to continue" << std::endl;
std::cin.get();
#endif
std::string scriptPath = "";
bool interactive = false;