Skip to content
Snippets Groups Projects
Commit c1742607 authored by Rashad Kanavath's avatar Rashad Kanavath
Browse files

ENH: force off BUILD_SHARED_LIBS for MSVC platform

parent 7f9e5dc6
No related branches found
No related tags found
No related merge requests found
......@@ -19,9 +19,12 @@ option(BUILD_ICE "Clone and build ICE" OFF)
option(BUILD_MONTEVERDI2 "Clone and build Monteverdi2" OFF)
option(BUILD_MONTEVERDI "Clone and build Monteverdi" OFF)
set(SB_BUILD_SHARED_LIBS ON)
if(WIN32)
if(MSVC)
set(SB_CMAKE_COMMAND ${CMAKE_COMMAND})
set(SB_BUILD_SHARED_LIBS OFF)
endif()
else(UNIX)
if(APPLE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment