-
Notifications
You must be signed in to change notification settings - Fork 2
Building SimBaD
tozanski edited this page Oct 14, 2014
·
1 revision
Make sure you have all the required components on your system. You can either use the packet manager in your system or build them by yourself.
- cmake tool,
- Boost library,
- Qt library (QtCreator not required). You also need a C++ compiler that supports the C++11 standard. The project was tested on GCC in version 4.8 and 4.9.
First, go to the project directory by executing a command cd project-dir, where project-dir should be substituted by the path to the directory with the project
In next step run cmake to prepare the makefiles. This can be done with command cmake CMakeLists.txt.
To compile all modules the following command needs to be executed
make all
Building the project might take few minutes to complete. When it finishes both GUI and CLI subprojects can be executed.
For advanced build configurations, f.e. to disable some components from being build please refer to the cmake documentation.