VTK/Tutorials/CMakeListsFile: Difference between revisions

From KitwarePublic
< VTK‎ | Tutorials
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
To use Cmake to generate your project, this is what the CMakeLists.txt file should look like:
To use Cmake to generate your project, this is what the CMakeLists.txt file should look like:


<source>
<source lang=text>
cmake_minimum_required(VERSION 2.6)
cmake_minimum_required(VERSION 2.6)
PROJECT(Test)
PROJECT(Test)

Revision as of 12:57, 2 July 2009

To use Cmake to generate your project, this is what the CMakeLists.txt file should look like:

<source lang=text> cmake_minimum_required(VERSION 2.6) PROJECT(Test)

FIND_PACKAGE(VTK REQUIRED) INCLUDE(${VTK_USE_FILE})

ADD_EXECUTABLE(Test Test.cpp) TARGET_LINK_LIBRARIES(Test vtkHybrid)

</source>