blob: 4af7cc360650a0a456e6ef104c878575dff382ee (
plain)
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
|
cmake_minimum_required (VERSION 2.8.12)
enable_testing()
project(targets_checks)
set(MATLAB_FIND_DEBUG TRUE)
if(NOT "${MCR_ROOT}" STREQUAL "")
set(Matlab_ROOT_DIR "${MCR_ROOT}")
if(NOT EXISTS "${MCR_ROOT}")
message(FATAL_ERROR "MCR does not exist ${MCR_ROOT}")
endif()
endif()
# the success of the following command is dependent on the current configuration:
# - on 32bits builds (cmake is building with 32 bits), it looks for 32 bits Matlab
# - on 64bits builds (cmake is building with 64 bits), it looks for 64 bits Matlab
find_package(Matlab REQUIRED COMPONENTS ENG_LIBRARY MAT_LIBRARY
OPTIONAL_COMPONENTS MAIN_PROGRAM)
if(NOT TARGET Matlab::mx)
message(FATAL_ERROR "Matlab::mx target does not exist")
endif()
if(NOT TARGET Matlab::mex)
message(FATAL_ERROR "Matlab::mex target does not exist")
endif()
if(NOT TARGET Matlab::eng)
message(FATAL_ERROR "Matlab::eng target does not exist")
endif()
if(NOT TARGET Matlab::mat)
message(FATAL_ERROR "Matlab::mat target does not exist")
endif()
matlab_add_mex(
# target name
NAME cmake_matlab_test_wrapper1
# output name
OUTPUT_NAME cmake_matlab_mex1
SRC ${CMAKE_CURRENT_SOURCE_DIR}/../matlab_wrapper1.cpp
DOCUMENTATION ${CMAKE_CURRENT_SOURCE_DIR}/../help_text1.m.txt
LINK_TO Matlab::mex
)
|