view Resources/Samples/OrthancCppClient/Vtk/CMakeLists.txt @ 487:733b24a00c26

sample expanded
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 16 Jul 2013 14:59:23 +0200
parents 4f5b4b0fa626
children
line wrap: on
line source

cmake_minimum_required(VERSION 2.8)

project(OrthancCppClientTest)

set(STATIC_BUILD OFF)
set(ORTHANC_ROOT ${CMAKE_SOURCE_DIR}/../../../..)

include(../OrthancCppClient.cmake)

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

add_executable(Test
  main.cpp
  ${ORTHANC_CPP_CLIENT_SOURCES}
  )

if(VTK_LIBRARIES)
  target_link_libraries(Test ${VTK_LIBRARIES})
else()
  target_link_libraries(Test vtkHybrid vtkVolumeRendering)
endif()