3-4. Build and Compile

Create Build Directory and Configure CMake

# Run from project root directory
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release

Compile the source codes

# Navigate to build directory
cd build

# Run compilation with parallel build
make -j
# make -j$(nproc)

Last updated

Was this helpful?