First run the script at .github/setup.sh
from the root directory.
Next enable GitHub's built-in vulnerability reports.
The script will automatically delete itself once it finishes running.
If you are on Windows, run the script from Git Bash or WSL.
Single-configuration generators like Unix Makefiles and Ninja:
cmake -B build --DCMAKE_BUILD_TYPE=<Debug|Release|RelWithDebInfo|MinSizeRel>
cmake --build build
Multi-configuration generators like Visual Studio, XCode and Ninja Multi-Config:
cmake -B build
cmake --build build --config <Debug|Release|RelWithDebInfo|MinSizeRel>