Template:ITKCMakeLists: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 30: | Line 30: | ||
cmake .. | cmake .. | ||
* If ITK is not installed but compiled on your system, you will need to specify the path to your ITK build: | * If ITK is not installed but compiled on your system, you will need to specify the path to your ITK build: | ||
cmake -DITK_DIR=/home/me/itk_build .. | cmake -DITK_DIR='''/home/me/itk_build''' .. | ||
Build the project: | Build the project: | ||
make | make | ||
and run it: | and run it: | ||
./{{{1}}} | ./{{{1}}} |
Revision as of 21:43, 23 December 2012
CMakeLists.txt
<syntaxhighlight lang="cmake"> cmake_minimum_required(VERSION 2.8)
project({{{1}}})
find_package(ITK REQUIRED) include(${ITK_USE_FILE}) if (ITKVtkGlue_LOADED)
find_package(VTK REQUIRED) include(${VTK_USE_FILE})
endif()
add_executable({{{1}}} MACOSX_BUNDLE {{{1}}}.cxx)
if( "${ITK_VERSION_MAJOR}" LESS 4 )
target_link_libraries({{{1}}} ITKReview ${ITK_LIBRARIES})
else( "${ITK_VERSION_MAJOR}" LESS 4 )
target_link_libraries({{{1}}} ${ITK_LIBRARIES})
endif( "${ITK_VERSION_MAJOR}" LESS 4 )
</syntaxhighlight>
Download and Build {{{1}}}
Click here to download {{{1}}} and its CMakeLists.txt file. Once the tarball {{{1}}}.tar has been downloaded and extracted,
cd {{{1}}}/build
- If ITK is installed:
cmake ..
- If ITK is not installed but compiled on your system, you will need to specify the path to your ITK build:
cmake -DITK_DIR=/home/me/itk_build ..
Build the project:
make
and run it:
./{{{1}}}