Template:VTKCMakeListsVersion: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Created page with "==CMakeLists.txt== {{#tag:syntaxhighlight | cmake_minimum_required(VERSION 2.6) PROJECT({{{2}}}) find_package(VTK REQUIRED) include(${VTK_USE_FILE}) add_executable({{{2}}} {{{...")
(No difference)

Revision as of 19:10, 4 December 2011

CMakeLists.txt

<syntaxhighlight lang="cmake"> cmake_minimum_required(VERSION 2.6)

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 id ${VTK_VERSION}")

if(VTK_LIBRARIES)

 target_link_libraries({{{2}}} ${VTK_LIBRARIES})

else()

 target_link_libraries({{{2}}} vtkHybrid )

endif() </syntaxhighlight>