Linux Build Guide.
Dependencies.
Building with Ninja.
- In the root directory of the project, create a build directory.
- Change the directory to the build directory.
cmake -G "Ninja" ../ -DCMAKE_BUILD_TYPE=Debug
where CMAKE_BUILD_TYPE can be changed to "Release". cmake --build . -j JOBS
where JOBS is the number of your logical processors minus 2. - Run the executable file in
REPOSITORY_ROOT/your_build_dir/Engine/
.
Example.
mkdir build
cd build
cmake -G "Ninja" ../ -DCMAKE_BUILD_TYPE=Debug
cmake --build . -j 10
or a one-liner to build:
mkdir build && cd build && cmake -G "Ninja" ../ -DCMAKE_BUILD_TYPE=Debug && cmake --build . -j 10