- Timestamp:
- Dec 26, 2010, 4:55:55 PM (14 years ago)
- Location:
- code/forks/pch_analyser/src/orxonox
- Files:
-
- 2 added
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/forks/pch_analyser/src/orxonox/CMakeLists.txt
r7805 r7815 27 27 Main.cc 28 28 29 QT MainWindow.h MainWindow.cc 30 QT MainWindow.ui 29 Analyser.h Analyser.cc 31 30 ) 32 31 -
code/forks/pch_analyser/src/orxonox/Main.cc
r7430 r7815 42 42 #include "core/CommandLineParser.h" 43 43 #include "core/Core.h" 44 #include " MainWindow.h"44 #include "Analyser.h" 45 45 46 46 namespace orxonox … … 71 71 QCoreApplication::setApplicationVersion(versionString); 72 72 73 if (CommandLineParser::getValue("generateDoc").toString().isEmpty()) 74 { 75 MainWindow window; 76 window.show(); 77 return app.exec(); 78 } 79 else 80 return 0; 73 parse(); 74 75 return 0; 81 76 } 82 77 }
Note: See TracChangeset
for help on using the changeset viewer.