Template:VTKCMakeLists
From KitwarePublic
Revision as of 13:16, 27 July 2011 by Daviddoria (talk | contribs)
CMakeLists.txt
<syntaxhighlight lang="cmake"> cmake_minimum_required(VERSION 2.6)
PROJECT({{{1}}})
find_package(VTK REQUIRED) include(${VTK_USE_FILE})
add_executable({{{1}}} {{{1}}}.cxx)
if(VTK_LIBRARIES)
target_link_libraries({{{1}}} ${VTK_LIBRARIES})
else()
target_link_libraries({{{1}}} vtkHybrid )
endif() </syntaxhighlight>