From bdeb2c62c5ad851b2be9c7ce1296e51d6c5f3231 Mon Sep 17 00:00:00 2001 From: Kentoku SHIBA Date: Fri, 3 Oct 2014 11:30:53 +0900 Subject: fix Windows build disabling position --- storage/mroonga/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'storage/mroonga') diff --git a/storage/mroonga/CMakeLists.txt b/storage/mroonga/CMakeLists.txt index 5c420d9672b..29801eb5ce6 100644 --- a/storage/mroonga/CMakeLists.txt +++ b/storage/mroonga/CMakeLists.txt @@ -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}) -- cgit v1.2.1