Matlab bindings: CMakeLists.txt: use "${LIBRARY_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}" as MEX_LIB_DIR only when compiling with MSVC, otherwise, use only "${LIBRARY_OUTPUT_PATH}"
This commit is contained in:
parent
fa075c50a1
commit
c35fd55b0e
@ -104,7 +104,11 @@ set(RST_PARSER_PATH ${CMAKE_SOURCE_DIR}/modules/java/generator)
|
|||||||
|
|
||||||
# set mex compiler options
|
# set mex compiler options
|
||||||
prepend("-I" MEX_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
prepend("-I" MEX_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
||||||
|
if (MSVC)
|
||||||
prepend("-L" MEX_LIB_DIR ${LIBRARY_OUTPUT_PATH}/${CMAKE_CFG_INTDIR})
|
prepend("-L" MEX_LIB_DIR ${LIBRARY_OUTPUT_PATH}/${CMAKE_CFG_INTDIR})
|
||||||
|
else()
|
||||||
|
prepend("-L" MEX_LIB_DIR ${LIBRARY_OUTPUT_PATH})
|
||||||
|
endif()
|
||||||
set(MEX_OPTS "-largeArrayDims")
|
set(MEX_OPTS "-largeArrayDims")
|
||||||
|
|
||||||
if (BUILD_TESTS)
|
if (BUILD_TESTS)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user