VTK/Tutorials/CMakeListsFile

From KitwarePublic
< VTK‎ | Tutorials
Revision as of 12:57, 2 July 2009 by Daviddoria (talk | contribs)
Jump to navigationJump to search

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>