commit | f8c74f074ffa723805d742b16d453b880efb909b | [log] [tgz] |
---|---|---|
author | swissChili <swisschili@fastmail.com> | Sat Apr 16 18:47:16 2022 -0700 |
committer | swissChili <swisschili@fastmail.com> | Sat Apr 16 18:47:16 2022 -0700 |
tree | 70985ccf3b5c7b80b1b0baeaac6f70f9d3254ceb | |
parent | a44bf7276ee9c27f8bf0034c362029fc2757f970 [diff] [blame] |
Remove CLI from default build config
diff --git a/main.cpp b/main.cpp index 42cc0a4..5e00583 100644 --- a/main.cpp +++ b/main.cpp
@@ -8,7 +8,9 @@ #include "Parser.h" #include "Evaluator.h" #include "VarContext.h" +#ifdef INCLUDE_CLI #include "Repl.h" +#endif #include "PPrint.h" #ifdef NO_IDE @@ -308,11 +310,13 @@ return testResults(); } +#ifdef INCLUDE_CLI else if (cli.isSet(replOption)) { Repl repl; repl.start(); } +#endif else { return ideMain(&a);