1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00

read file to be compiled from command line arguments

This commit is contained in:
Marc Zinnschlag 2010-06-28 00:21:45 +02:00
parent d20e850d31
commit d02257ca88

View File

@ -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);