-
Notifications
You must be signed in to change notification settings - Fork 10
TN: Setting up local build
Bryce Besler edited this page Nov 16, 2017
·
1 revision
To setup CMake locally, you need to do the following:
- Download and compile ITK on your local machine:
git clone git://itk.org/ITK.git
cd ITK
mkdir Build
cd Build
ccmake ..
# Do all your cmake stuff
make -j#nproc
- Clone this repository and setup CMake
git clone https://github.com/Besler/ITKBoneEnhancement.git
cd ITKBoneEnhancement
mkdir Build
cd Build
ccmake ..
# Do all your cmake stuff
# Now, when it asks for your ITK directory, set it to the above ITK build directory!
# ITK_DIR = /path/to/projects/ITK/Build
make -j#nproc
ctest