10 lines
228 B
CMake
10 lines
228 B
CMake
|
cmake_minimum_required (VERSION 2.8.12)
|
||
|
enable_testing()
|
||
|
project(findmatlab_runcmake_test2)
|
||
|
|
||
|
if(NOT DEFINED matlab_required)
|
||
|
set(matlab_required REQUIRED)
|
||
|
endif()
|
||
|
|
||
|
find_package(Matlab ${matlab_required} COMPONENTS MX_LIBRARY)
|