Template:VTKCMakeListsNamed: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
Line 11: Line 11:
add_executable({{{ExampleName}}} {{{ExampleName}}}.cxx)
add_executable({{{ExampleName}}} {{{ExampleName}}}.cxx)


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

Revision as of 23:40, 3 May 2011

CMakeLists.txt

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

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 {{{AdditionalLibraries}}})

endif() </syntaxhighlight>