comparison OrthancCppClient/Package/Test/CMakeLists.txt @ 506:6e4bd06c17c5 laaw

the wrapper is working
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 18 Jul 2013 12:01:51 +0200
parents
children
comparison
equal deleted inserted replaced
504:50d9660f960c 506:6e4bd06c17c5
1 cmake_minimum_required(VERSION 2.8)
2
3 project(OrthancCppClientTest)
4
5 find_package(VTK REQUIRED)
6 include(${VTK_USE_FILE})
7
8 add_executable(Test
9 main.cpp
10 )
11
12 if(VTK_LIBRARIES)
13 target_link_libraries(Test ${VTK_LIBRARIES})
14 else()
15 target_link_libraries(Test vtkHybrid vtkVolumeRendering)
16 endif()
17
18 set(CMAKE_CXX_FLAGS "-fpermissive") #TODO REMOVE