-
Notifications
You must be signed in to change notification settings - Fork 0
Build Instructions
Markus Pettersson edited this page Jan 28, 2020
·
2 revisions
To build the project, you will need the following dependencies
- CMake (3.8+)
- Clang (9.0.0+)
- LLVM (9.0.0+)
After you have cloned the project, you will need to create a build directory in the root of the project.
mkdir build
Once the build folder has been created, cd into it and run CMake from the new location specifying the root directory as the target
cd build
cmake ../
CMake will setup the build system for you, which will generate a Makefile
inside of the build folder. All you need to do now is run make from inside of the build folder
make
The compiled binaries will now be placed inside of a bin folder in the root of the project.