Template:VTKCMakeListsNamed: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Try defaults for template parameters)
(No difference)

Revision as of 13:15, 27 July 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 )

endif() </syntaxhighlight>