X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=CMakeConfig.txt;h=b8c60a761693eefc0677b945848f089d0e372865;hb=2f289c64f625962d945ec3bee80f36bc5c61ee35;hp=707ff4bbedd470bab7af83b227645a54552fba7a;hpb=c3526f7547e7a69204a25982f6764afdab663252;p=m6w6%2Flibmemcached diff --git a/CMakeConfig.txt b/CMakeConfig.txt index 707ff4bb..b8c60a76 100644 --- a/CMakeConfig.txt +++ b/CMakeConfig.txt @@ -1,14 +1,28 @@ -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") +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" - OFF) + $ENV{BUILD_TESTING}) option(BUILD_DOCSONLY "build *only* documentation" - OFF) + $ENV{BUILD_DOCSONLY}) option(BUILD_DOCS "build documentation" - OFF) + ${BUILD_DOCSONLY}) option(BUILD_DOCS_HTML "build HTML docs" ${BUILD_DOCS}) option(BUILD_DOCS_MAN "build manpages" @@ -16,25 +30,41 @@ option(BUILD_DOCS_MAN "build manpages" option(BUILD_DOCS_MANGZ "gzip manpages" ${BUILD_DOCS_MAN}) +set(ENABLE_SANITIZERS "$ENV{ENABLE_SANITIZERS}" + CACHE STRING "sanitizers to enable (e.g. address;undefined ...)") +option(ENABLE_SASL "enable SASL support" + $ENV{ENABLE_SASL}) option(ENABLE_DTRACE "enable dtrace support" - OFF) + $ENV{ENABLE_DTRACE}) +option(ENABLE_HASH_HSIEH "enable hsieh hash support" + $ENV{ENABLE_HASH_HSIEH}) +if(NOT DEFINED ENV{ENABLE_HASH_FNV64}) + set(ENV{ENABLE_HASH_FNV64} ON) +endif() option(ENABLE_HASH_FNV64 "enable fnv64 hash support" - ON) + $ENV{ENABLE_HASH_FNV64}) +if(NOT DEFINED ENV{ENABLE_HASH_MURMUR}) + set(ENV{ENABLE_HASH_MURMUR} ON) +endif() option(ENABLE_HASH_MURMUR "enable murmur hash support" - ON) -option(ENABLE_HASH_HSIEH "enable hsieh hash support" - OFF) + $ENV{ENABLE_HASH_MURMUR}) +if(NOT DEFINED ENV{ENABLE_MEMASLAP}) + set(ENV{ENABLE_MEMASLAP} ON) +endif() option(ENABLE_MEMASLAP "enable memaslap client" - ON) -option(ENABLE_SASL "enable SASL support" - OFF) - -set(ENABLE_SANITIZERS "" - CACHE STRING "sanitizers to enable (e.g. address undefined ...)") + $ENV{ENABLE_MEMASLAP}) if(BUILD_TESTING) - set(MEMCACHED_BINARY "/usr/bin/memcached" - CACHE FILEPATH "memcached binary") + 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 --repeat until-pass:2) + if(NOT "$ENV{CIRRUS_CI}") + list(APPEND CMAKE_CTEST_ARGUMENTS -j2) + endif() + endif() endif() if(BUILD_DOCS) @@ -42,7 +72,7 @@ if(BUILD_DOCS) 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" + set(SPHINX_THEME_OPTIONS "" CACHE STRING "sphinx HTML theme options") set(SPHINX_EXTENSIONS "" CACHE STRING "comma separated list of quoted sphinx extensions") @@ -50,15 +80,9 @@ if(BUILD_DOCS) CACHE STRING "append verbatim code to sphinx' conf.py") endif() -# legacy - -set(HAVE_VISIBILITY 1) -set(HAVE_SHARED_ENABLED 1) -set(HAVE_GCC_BUILTIN_ATOMIC 1) - # modules -set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake) +list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake") if(NOT BUILD_DOCSONLY) include(CMake/_Include.cmake)