summaryrefslogtreecommitdiff
path: root/Tests/FindMatlab
diff options
context:
space:
mode:
authorRaffi Enficiaud <raffi.enficiaud@mines-paris.org>2016-08-30 14:50:20 +0200
committerRaffi Enficiaud <raffi.enficiaud@mines-paris.org>2016-08-30 14:50:20 +0200
commitbf09271b656bb8110c40cd2d456acfaa3b4e4741 (patch)
treeaf5376c76ad256ede1208950f70259df71839e89 /Tests/FindMatlab
parent57d121fbb1f2e9e2ac0622dd4049dedc3968d894 (diff)
downloadcmake-bf09271b656bb8110c40cd2d456acfaa3b4e4741.tar.gz
FindMatlab: adding handling of component "MAT"
- documentation - test - cosmetic changes
Diffstat (limited to 'Tests/FindMatlab')
-rw-r--r--Tests/FindMatlab/components_checks/CMakeLists.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/Tests/FindMatlab/components_checks/CMakeLists.txt b/Tests/FindMatlab/components_checks/CMakeLists.txt
new file mode 100644
index 0000000000..3dec0931cf
--- /dev/null
+++ b/Tests/FindMatlab/components_checks/CMakeLists.txt
@@ -0,0 +1,23 @@
+
+cmake_minimum_required (VERSION 2.8.12)
+enable_testing()
+project(component_checks)
+
+set(MATLAB_FIND_DEBUG TRUE)
+
+# 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 MX_LIBRARY ENG_LIBRARY MAT_LIBRARY MAIN_PROGRAM)
+
+message(STATUS "FindMatlab libraries: ${Matlab_LIBRARIES}")
+
+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_LIBRARIES}
+ )