Template:VTKCMakeListsNamed: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
m (ой)
(Update minimum cmake version)
 
(13 intermediate revisions by 3 users not shown)
Line 1: Line 1:
==CMakeLists.txt==
==CMakeLists.txt==
{{#tag:source
{{#tag:syntaxhighlight
|
|
project(SystemInfo CXX)
cmake_minimum_required(VERSION 2.8)
message(STATUS "My name is: {{{1}}} ")
 
message(STATUS "I live in: {{{2}}} ")
PROJECT({{{ExampleName}}})
message(STATUS "Ленин : {{{3}}} ")
 
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 {{{AdditionalLibraries|}}})
endif()
|lang=cmake}}
|lang=cmake}}

Latest revision as of 19:24, 26 April 2012

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>