mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 14:59:54 +00:00
read file to be compiled from command line arguments
This commit is contained in:
parent
d20e850d31
commit
d02257ca88
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ int main (int argc, char **argv)
|
|||
Compiler::StreamErrorHandler errorHandler (std::cout);
|
||||
Compiler::FileParser parser (errorHandler, context);
|
||||
|
||||
std::ifstream file ("test.mwscript");
|
||||
std::ifstream file (argc>1 ? argv[1] : "test.mwscript");
|
||||
Compiler::Scanner scanner (errorHandler, file);
|
||||
|
||||
scanner.scan (parser);
|
||||
|
|
Loading…
Reference in a new issue