Template:ITKCMakeLists: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Remove sections not appropriate for this cmake file)
(Better instructions.)
Line 25: Line 25:
==Download and Build {{{1}}}==
==Download and Build {{{1}}}==
Click [http://gitorious.org/itkwikiexamplestarballs/itkwikiexamplestarballs/blobs/raw/master/{{{1}}}.tar here to download {{{1}}}] and its CMakeLists.txt file.
Click [http://gitorious.org/itkwikiexamplestarballs/itkwikiexamplestarballs/blobs/raw/master/{{{1}}}.tar here to download {{{1}}}] and its CMakeLists.txt file.
Once the tarball {{{1}}}.tar has been downloaded,
Once the tarball {{{1}}}.tar has been downloaded and extracted,
  cd {{{1}}}/build
  cd {{{1}}}/build
* If ITK is installed:
* If ITK is installed:

Revision as of 21:59, 28 November 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, and run it:

make