forked from sonnyky/CameraSensing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
55 lines (44 loc) · 1.84 KB
/
CMakeLists.txt
File metadata and controls
55 lines (44 loc) · 1.84 KB
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
cmake_minimum_required(VERSION 2.8)
project (camera_sensing)
set(CMAKE_BINARY_DIR ${CMAKE_SOURCE_DIR}/build)
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR})
set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR})
# PCL
set(PCL_DIR "D:/Libraries/pcl64/PCL 1.8.1/cmake")
find_package(PCL 1.8.1 REQUIRED)
# GFLAGS
set(gflags_DIR "D:/Libraries/gflags/install/lib/cmake/gflags")
find_package(gflags REQUIRED)
set(GFLAGS_INCLUDE "D:/Libraries/gflags/install/include")
set(GFLAGS_LIB "D:/Libraries/gflags/install/lib/gflags_nothreads_static.lib")
# Find OpenCV, you may need to set OpenCV_DIR variable
# to the absolute path to the directory containing OpenCVConfig.cmake file
# via the command line or GUI
set( OpenCV_DIR "D:/Libraries/x64/opencv/build" )
option( OpenCV_STATIC OFF )
find_package(OpenCV REQUIRED)
# Realsense SDK
set(RealsenseSDK_ROOT "D:/Workspace/librealsense")
set(RealsenseSDK_INCLUDE ${RealsenseSDK_ROOT}/include) #currently hardcoding for Release x64
set(RealsenseSDK_LIB "D:/Libraries/realsense_sdk_x64/Release/realsense2.lib")
# Realsense capture
set(REALSENSE_CAPTURE_DIR "D:/Workspace/CameraSensing/realsense_multiple")
set(REALSENSE_CAPTURE_INCLUDE "D:/Workspace/CameraSensing/realsense_multiple/include")
# PugiXML
set(PUGI_DIR "D:/Libraries/pugixml-1.10/pugixml-1.10/src")
add_subdirectory(calculate_homography)
add_subdirectory(realsense_d415)
add_subdirectory(uplugin_depth_filter)
add_subdirectory(uplugin_cv_util)
add_subdirectory(uplugin_cv_depth)
add_subdirectory(uplugin_face)
add_subdirectory(uplugin_shape)
add_subdirectory(realsense_multiple)
add_subdirectory(merge_realsense_multiple)
add_subdirectory(server_realsense_multiple)
add_subdirectory(plane_detection)
add_subdirectory(position_detector)
add_subdirectory(human_pose_detection)
add_subdirectory(dynamic_projection)
add_subdirectory(reconstruction)
add_subdirectory(reconstruction_markered)