diff options
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b1adbce5565..39f111e8cef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -413,8 +413,10 @@ UNSET (MYSQLD_STATIC_PLUGIN_LIBS CACHE) INCLUDE(mariadb_connector_c) # this does ADD_SUBDIRECTORY(libmariadb) -# Add storage engines and plugins. -CONFIGURE_PLUGINS() +IF (NOT WITHOUT_SERVER) + # Add storage engines and plugins. + CONFIGURE_PLUGINS() +ENDIF() ADD_SUBDIRECTORY(include) ADD_SUBDIRECTORY(dbug) |