Template:VTKCMakeListsVersion: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
(4 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{{#tag:syntaxhighlight | {{#tag:syntaxhighlight | ||
| | | | ||
cmake_minimum_required(VERSION 2. | cmake_minimum_required(VERSION 2.8) | ||
PROJECT({{{2}}}) | PROJECT({{{2}}}) | ||
Line 12: | Line 12: | ||
if(${VTK_VERSION} VERSION_LESS "{{{1}}}") | if(${VTK_VERSION} VERSION_LESS "{{{1}}}") | ||
message(FATAL "This example requires VTK version {{{1}}} but the current version | message(FATAL " This example requires VTK version {{{1}}} but the current version is ${VTK_VERSION}") | ||
endif() | endif() | ||
Latest revision as of 19:25, 26 April 2012
CMakeLists.txt
<syntaxhighlight lang="cmake"> cmake_minimum_required(VERSION 2.8)
PROJECT({{{2}}})
find_package(VTK REQUIRED) include(${VTK_USE_FILE})
add_executable({{{2}}} {{{2}}}.cxx)
if(${VTK_VERSION} VERSION_LESS "{{{1}}}")
message(FATAL " This example requires VTK version {{{1}}} but the current version is ${VTK_VERSION}")
endif()
if(VTK_LIBRARIES)
target_link_libraries({{{2}}} ${VTK_LIBRARIES})
else()
target_link_libraries({{{2}}} vtkHybrid )
endif() </syntaxhighlight>