1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-29 21:42:28 +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}") "${CMAKE_CURRENT_SOURCE_DIR}/${MRN_BUNDLED_GROONGA_RELATIVE_DIR}")
if(EXISTS "${MRN_BUNDLED_GROONGA_DIR}") if(EXISTS "${MRN_BUNDLED_GROONGA_DIR}")
set(MRN_GROONGA_BUNDLED TRUE) set(MRN_GROONGA_BUNDLED TRUE)
else()
set(MRN_GROONGA_BUNDLED FALSE)
if(MSVC) if(MSVC)
message(STATUS "Bundled Mroonga does not support MSVC yet") message(STATUS "Bundled Mroonga does not support MSVC yet")
return() return()
endif() endif()
else()
set(MRN_GROONGA_BUNDLED FALSE)
endif() endif()
set(MRN_PLUGIN_SUFFIX ${CMAKE_SHARED_LIBRARY_SUFFIX}) set(MRN_PLUGIN_SUFFIX ${CMAKE_SHARED_LIBRARY_SUFFIX})