Added DisableMEX flag

master
Paul Sutton 10 years ago
parent 07ae84a529
commit 57bb1a8d53

@ -46,6 +46,11 @@ CONFIGURE_FILE(
"${CMAKE_CURRENT_BINARY_DIR}/CTestCustom.cmake"
IMMEDIATE @ONLY)
########################################################################
# Options
########################################################################
option(DisableMEX "DisableMEX" OFF)
########################################################################
# Install Dirs
########################################################################

@ -4,7 +4,7 @@
include(CMakeParseArguments)
if(NOT DisableMEX)
if(NOT MATLAB_FOUND)
find_package(MATLAB)
endif()
@ -22,6 +22,7 @@ if(NOT MATLAB_MEX_PATH)
DOC "The mex program path"
)
endif()
endif()
#
# BuildMex -- arguments

@ -19,6 +19,7 @@
# and at http://www.gnu.org/licenses/.
#
if(NOT DisableMEX)
########################################################################
# Install headers
########################################################################
@ -46,4 +47,4 @@ ADD_CUSTOM_TARGET (add_mex_headers SOURCES ${HEADERS_ALL})
# Add the subdirectories
########################################################################
ADD_SUBDIRECTORY(lib)
endif()

Loading…
Cancel
Save