Template:VTKCMakeListsNamed: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Update minimum cmake version)
 
(7 intermediate revisions by 2 users not shown)
Line 2: Line 2:
{{#tag:syntaxhighlight
{{#tag:syntaxhighlight
|
|
cmake_minimum_required(VERSION 2.6)
cmake_minimum_required(VERSION 2.8)


PROJECT({{{1}}})
PROJECT({{{ExampleName}}})


find_package(VTK REQUIRED)
find_package(VTK REQUIRED)
include(${VTK_USE_FILE})
include(${VTK_USE_FILE})


add_executable({{{1}}} {{{1}}}.cxx)
add_executable({{{ExampleName}}} {{{ExampleName}}}.cxx)


if("${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION}" LESS 5.8)
if(VTK_LIBRARIES)
target_link_libraries({{{1}}} {{{2}}})
  target_link_libraries({{{ExampleName}}} ${VTK_LIBRARIES})
else
else()
target_link_libraries({{{1}}} ${VTK_LIBRARIES})
  target_link_libraries({{{ExampleName}}} vtkHybrid {{{AdditionalLibraries|}}})
endif
endif()
|lang=cmake}}
|lang=cmake}}

Latest revision as of 19:24, 26 April 2012

CMakeLists.txt

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

PROJECT({{{ExampleName}}})

find_package(VTK REQUIRED) include(${VTK_USE_FILE})

add_executable({{{ExampleName}}} {{{ExampleName}}}.cxx)

if(VTK_LIBRARIES)

 target_link_libraries({{{ExampleName}}} ${VTK_LIBRARIES})

else()

 target_link_libraries({{{ExampleName}}} vtkHybrid )

endif() </syntaxhighlight>