Template:VTKCMakeListsNamed: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Line 13: | Line 13: | ||
if("${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION}" LESS 5.8) | if("${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION}" LESS 5.8) | ||
target_link_libraries({{{1}}} {{{2}}}) | target_link_libraries({{{1}}} {{{2}}}) | ||
else | else() | ||
target_link_libraries({{{1}}} ${VTK_LIBRARIES}) | target_link_libraries({{{1}}} ${VTK_LIBRARIES}) | ||
endif | endif() | ||
|lang=cmake}} | |lang=cmake}} |
Revision as of 12:36, 1 May 2011
CMakeLists.txt
<syntaxhighlight lang="cmake"> cmake_minimum_required(VERSION 2.6)
PROJECT({{{1}}})
find_package(VTK REQUIRED) include(${VTK_USE_FILE})
add_executable({{{1}}} {{{1}}}.cxx)
if("${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION}" LESS 5.8) target_link_libraries({{{1}}} {{{2}}}) else() target_link_libraries({{{1}}} ${VTK_LIBRARIES}) endif() </syntaxhighlight>