1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-28 13:01:41 +03:00

fix Windows build disabling position

This commit is contained in:
Kentoku SHIBA 2014-10-03 11:30:53 +09:00
parent 665ea7796f
commit bdeb2c62c5

View File

@ -38,12 +38,12 @@ set(MRN_BUNDLED_GROONGA_DIR
"${CMAKE_CURRENT_SOURCE_DIR}/${MRN_BUNDLED_GROONGA_RELATIVE_DIR}")
if(EXISTS "${MRN_BUNDLED_GROONGA_DIR}")
set(MRN_GROONGA_BUNDLED TRUE)
else()
set(MRN_GROONGA_BUNDLED FALSE)
if(MSVC)
message(STATUS "Bundled Mroonga does not support MSVC yet")
return()
endif()
else()
set(MRN_GROONGA_BUNDLED FALSE)
endif()
set(MRN_PLUGIN_SUFFIX ${CMAKE_SHARED_LIBRARY_SUFFIX})