From 52389e8ef00646ce623e8d2eef39c12cd7d2faec Mon Sep 17 00:00:00 2001 From: Subv Date: Tue, 28 Aug 2012 20:22:50 -0500 Subject: [PATCH] CMake/BuildSystem: Add ACE to the VS solution also when only building tools (its needed by the mmaps_generator) --- dep/CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dep/CMakeLists.txt b/dep/CMakeLists.txt index 48a2fd56ec0..c01a1e3426a 100644 --- a/dep/CMakeLists.txt +++ b/dep/CMakeLists.txt @@ -21,11 +21,9 @@ if(CMAKE_SYSTEM_NAME MATCHES "Linux") endif() if(CMAKE_SYSTEM_NAME MATCHES "Windows") - if(SERVERS) - add_subdirectory(acelite) - if(USE_MYSQL_SOURCES) + add_subdirectory(acelite) + if(SERVERS AND USE_MYSQL_SOURCES) add_subdirectory(mysqllite) - endif() endif() if(TOOLS) add_subdirectory(bzip2)