-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
53 lines (41 loc) · 1.03 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
project(SliceView)
set(APP SliceView)
cmake_minimum_required(VERSION 2.8)
set(OF_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/../of/" CACHE PATH "The root directory of ofnode/of project.")
include(${OF_ROOT}/openFrameworks.cmake)
set(VTK_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../VTK/build")
find_package(VTK REQUIRED)
include(${VTK_USE_FILE})
#ofxaddon()
option(COTIRE "Use cotire" OFF)
set(SOURCES
src/main.cpp
src/ofApp.cpp
src/ImageReader.cpp
)
add_executable(
${APP}
MACOSX_BUNDLE
${SOURCES}
${OFXADDONS_SOURCES}
)
target_link_libraries(
${APP}
${OPENFRAMEWORKS_LIBRARIES}
${VTK_LIBRARIES}
)
set_target_properties(
${APP} PROPERTIES
MACOSX_BUNDLE_INFO_PLIST
"${CMAKE_CURRENT_SOURCE_DIR}/Info.plist"
)
if(CMAKE_BUILD_TYPE MATCHES Debug)
set_target_properties( ${APP} PROPERTIES OUTPUT_NAME "${APP}-Debug")
endif()
if (CMAKE_CROSSCOMPILING)
set_target_properties( ${APP} PROPERTIES OUTPUT_NAME
"${APP}-${OF_PLATFORM}-${CMAKE_BUILD_TYPE}")
endif()
if (COTIRE)
cotire(${APP})
endif()