Template:VTKCMakeListsNamed

From KitwarePublic
Revision as of 19:24, 26 April 2012 by Lorensen (talk | contribs) (Update minimum cmake version)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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>