forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
35 lines (30 loc) · 1.91 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
# minimum required cmake version: 3.1.0
cmake_minimum_required(VERSION 3.1.0)
project(RealsenseMatlabWrappers)
find_package(Matlab COMPONENTS MX_LIBRARY MAT_LIBRARY REQUIRED)
set(DEPENDENCIES realsense2 ${Matlab_MAT_LIBRARY})
# Workaround for https://github.com/IntelRealSense/librealsense/pull/3611/files CMAKE_DEBUG_SUFFIX
# With MSVC2017 the realsense2 dependency without the suffix is still added to the debug build
# via the /DEFAULTLIB:realsense2.lib entry
# A similar report exist dated in 2011 https://cmake.org/pipermail/cmake/2011-April/043808.html
SET( CMAKE_SHARED_LINKER_FLAGS ${CMAKE_SHARED_LINKER_FLAGS} " /NODEFAULTLIB:realsense2" )
set(MATLAB_CPP librealsense_mex.cpp Factory.cpp)
set(MATLAB_H Factory.h MatlabParamParser.h rs2_type_traits.h types.h)
set(MATLAB_M align.m camera_info.m colorizer.m config.m context.m
decimation_filter.m depth_frame.m depth_sensor.m
depth_stereo_sensor.m device.m device_hub.m disparity_frame.m
disparity_transform.m filter.m format.m frame.m
frame_metadata_value.m frame_queue.m frameset.m hole_filling_filter.m
motion_frame.m motion_stream_profile.m option.m options.m pipeline.m
pipeline_profile.m playback.m playback_status.m pointcloud.m points.m
pose_frame.m recorder.m roi_sensor.m save_single_frameset.m
save_to_ply.m sensor.m spatial_filter.m stream.m stream_profile.m
syncer.m temporal_filter.m timestamp_domain.m video_frame.m
video_stream_profile.m
)
set(MATLAB_EXAMPLES depth_example.m pointcloud_example.m rosbag_example.m)
matlab_add_mex(NAME librealsense_mex
SRC ${MATLAB_CPP} ${MATLAB_H}
LINK_TO ${DEPENDENCIES})
set_target_properties(librealsense_mex PROPERTIES FOLDER Wrappers)
#TODO: additionally, the compiled mex file and all the .m files need to be copied into a folder called `+realsense` at the install site