cmake: fix MEMCACHED_BINARY
[awesomized/libmemcached] / CMakeConfig.txt
index 1ea464f0f0f7b5ba69228be6a1429105c4d59735..7e36cf5ac5d1574cf0b34d78fa14318b928a8b38 100644 (file)
@@ -1,51 +1,74 @@
-set(CMAKE_BUILD_TYPE Release
-    CACHE STRING "build type (Release, Debug, ...)")
+
+if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
+    if(NOT DEFINED ENV{CMAKE_BUILD_TYPE})
+        set(ENV{CMAKE_BUILD_TYPE} Release)
+    endif()
+    set(CMAKE_BUILD_TYPE $ENV{CMAKE_BUILD_TYPE}
+        CACHE STRING "build type (Release, Debug, ...)" FORCE)
+endif()
 set(CMAKE_INSTALL_PREFIX /usr/local
     CACHE PATH "install prefix")
 
-# make test
-
-set(BUILD_TESTING ON
-    CACHE STRING "whether to enable build of the test suite")
-
-set(ENABLE_SANITIZERS ""
+if(APPLE)
+    set(CMAKE_INSTALL_RPATH @loader_path
+        CACHE STRING "set relative rpath")
+elseif(UNIX)
+    # FIXME
+    set(CMAKE_INSTALL_RPATH $ORIGIN
+        CACHE STRING "set relative rpath")
+endif()
+
+option(BUILD_TESTING        "whether to enable build of the test suite"
+        $ENV{BUILD_TESTING})
+option(BUILD_DOCSONLY       "build *only* documentation"
+        $ENV{BUILD_DOCSONLY})
+option(BUILD_DOCS           "build documentation"
+        ${BUILD_DOCSONLY})
+option(BUILD_DOCS_HTML      "build HTML docs"
+        ${BUILD_DOCS})
+option(BUILD_DOCS_MAN       "build manpages"
+        ${BUILD_DOCS})
+option(BUILD_DOCS_MANGZ     "gzip manpages"
+        ${BUILD_DOCS_MAN})
+
+option(ENABLE_DTRACE        "enable dtrace support"
+        $ENV{ENABLE_DTRACE})
+option(ENABLE_HASH_FNV64    "enable fnv64 hash support"
+        ON)
+option(ENABLE_HASH_MURMUR   "enable murmur hash support"
+        ON)
+option(ENABLE_HASH_HSIEH    "enable hsieh hash support"
+        $ENV{ENABLE_HASH_HSIEH})
+option(ENABLE_MEMASLAP      "enable memaslap client"
+        ON)
+option(ENABLE_SASL          "enable SASL support"
+        $ENV{ENABLE_SASL})
+
+set(ENABLE_SANITIZERS $ENV{ENABLE_SANITIZERS}
     CACHE STRING "sanitizers to enable (e.g. address undefined ...)")
 
-# sasl
-
-set(ENABLE_SASL OFF
-    CACHE BOOL "enable SASL support")
-
-# hashes
-
-set(ENABLE_FNV64_HASH ON
-    CACHE BOOL "enable fnv64 hash support")
-set(ENABLE_MURMUR_HASH ON
-    CACHE BOOL "enable murmur hash support")
-set(ENABLE_HSIEH_HASH OFF
-    CACHE BOOL "enable hsieh hash support")
-
-# memaslap, needs libevent and stdatomic
-set(ENABLE_MEMASLAP ON
-    CACHE BOOL "enable memaslap client")
-
-# dtrace
-
-set(ENABLE_DTRACE OFF
-    CACHE BOOL "enable dtrace support")
-
-# sphinx
-
-set(SPHINX_OPTIONS ""
-    CACHE STRING "additional sphinx-build command line options")
-set(SPHINX_THEME "sphinx_rtd_theme"
-    CACHE STRING "sphinx HTML theme")
-set(SPHINX_THEME_OPTIONS "'collapse_navigation':False, 'navigation_depth':2, 'titles_only':False, 'includehidden':False"
-    CACHE STRING "sphinx HTML theme options")
-set(SPHINX_EXTENSIONS ""
-    CACHE STRING "comma separated list of quoted sphinx extensions")
-set(SPHINX_CONF_APPEND ""
-    CACHE STRING "append verbatim code to sphinx' conf.py")
+if(BUILD_TESTING)
+    set(MEMCACHED_BINARY $ENV{MEMCACHED_BINARY}
+            CACHE STRING "memcached binary")
+    set(CMAKE_CTEST_ARGUMENTS "--output-on-failure")
+    if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.17)
+        # available since CMake 3.17
+        list(APPEND CMAKE_CTEST_ARGUMENTS -j2 --repeat until-pass:2)
+    endif()
+endif()
+
+if(BUILD_DOCS)
+    set(SPHINX_OPTIONS ""
+        CACHE STRING "additional sphinx-build command line options")
+    set(SPHINX_THEME "sphinx_rtd_theme"
+        CACHE STRING "sphinx HTML theme")
+    set(SPHINX_THEME_OPTIONS ""
+        CACHE STRING "sphinx HTML theme options")
+    set(SPHINX_EXTENSIONS ""
+        CACHE STRING "comma separated list of quoted sphinx extensions")
+    set(SPHINX_CONF_APPEND ""
+        CACHE STRING "append verbatim code to sphinx' conf.py")
+endif()
 
 # legacy
 
@@ -55,5 +78,8 @@ set(HAVE_GCC_BUILTIN_ATOMIC 1)
 
 # modules
 
+set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake)
 
-include(CMake/_Include.cmake)
+if(NOT BUILD_DOCSONLY)
+    include(CMake/_Include.cmake)
+endif()