The included build scripts assume that cmake.exe
can be found in the path, edit them to reflect the location of your cmake binary.
Make a fork of this repository
Clone your fork
git clone <your_fork_url>
cd <your_fork_dir>
git branch develop origin/develop
Repeat for each branch you want to track locally
OR grab all remote branches for local tracking:
for b in `git branch -r | grep -v -- '->'`; do git branch --track ${b##origin/} $b; done
Execute one of the generate_project_*.bat
files in the root directory
From root directory:
mkdir build
cd build
mkdir superbuild
cd superbuild
cmake ../../cmake/superbuild -DCMAKE_BUILD_TYPE=Debug -G<Generator of your choice>
cmake --build ./ --config Debug
In both cases can delete build folder and repeat to do a clean build.
Before contributing, consult the contribution guidelines.
API can be found here.