Template:VTKCMakeLists: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Daviddoria (talk | contribs) No edit summary |
(Make examples Mac friendly) |
||
Line 9: | Line 9: | ||
include(${VTK_USE_FILE}) | include(${VTK_USE_FILE}) | ||
add_executable({{{1}}} {{{1}}}.cxx) | if (APPLE) | ||
add_executable({{{1}}} MACOSX_BUNDLE {{{1}}}.cxx) | |||
else() | |||
add_executable({{{1}}} {{{1}}}.cxx) | |||
endif() | |||
if(VTK_LIBRARIES) | if(VTK_LIBRARIES) |
Revision as of 17:07, 9 February 2012
CMakeLists.txt
<syntaxhighlight lang="cmake"> cmake_minimum_required(VERSION 2.6)
PROJECT({{{1}}})
find_package(VTK REQUIRED) include(${VTK_USE_FILE})
if (APPLE)
add_executable({{{1}}} MACOSX_BUNDLE {{{1}}}.cxx)
else()
add_executable({{{1}}} {{{1}}}.cxx)
endif()
if(VTK_LIBRARIES)
target_link_libraries({{{1}}} ${VTK_LIBRARIES})
else()
target_link_libraries({{{1}}} vtkHybrid )
endif() </syntaxhighlight>