mirror of
https://github.com/reactos/CMake.git
synced 2025-01-05 18:38:46 +00:00
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)
|