Template:VTKCMakeListsMultiple

From KitwarePublic
Revision as of 00:43, 4 February 2017 by Lorensen (talk | contribs) (Created page with "==CMakeLists.txt== {{#tag:syntaxhighlight | cmake_minimum_required(VERSION 2.8) PROJECT({{{1}}}) find_package(VTK REQUIRED) include(${VTK_USE_FILE}) add_executable({{{1}}}...")
(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({{{1}}})

find_package(VTK REQUIRED) include(${VTK_USE_FILE})

add_executable({{{1}}} MACOSX_BUNDLE {{{1}}} {{{2}}})

if(VTK_LIBRARIES)

 target_link_libraries({{{1}}} ${VTK_LIBRARIES})

else()

 target_link_libraries({{{1}}} vtkHybrid vtkWidgets)

endif() </syntaxhighlight>