Skip to content

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:

  1. 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
  1. 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
Clone this wiki locally