-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
59 lines (45 loc) · 957 Bytes
/
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
54
55
56
57
58
59
cmake_minimum_required(VERSION 2.8.3)
project(tof_cam)
# Set cpp 14 standard
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Configure OpenCV (for tof_show)
find_package(OpenCV REQUIRED)
# Specify additional locations of header files
include_directories(
include
SYSTEM
)
###########
## Build ##
###########
# Set build type
set(CMAKE_BUILD_TYPE Release)
# Make shared library
add_library(tof_cam SHARED
src/tof_cam.cpp
src/jhcTofCam.cpp
)
# Required input libraries for shared lib
target_link_libraries(tof_cam
pthread
)
# Make test program to save images
add_executable(tof_save
src/tof_save.cpp
src/jhcTofCam.cpp
)
# Required input libraries for saving images
target_link_libraries(tof_save
pthread
)
# Make test program to show images
add_executable(tof_show
src/tof_show.cpp
src/jhcTofCam.cpp
)
# Required input libraries for showing images
target_link_libraries(tof_show
pthread
${OpenCV_LIBS}
)