2013-09-09 11:32:39 +02:00
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules")
|
|
|
|
|
|
|
|
project(TokuDB)
|
|
|
|
|
|
|
|
# suppress -rdynamic
|
|
|
|
set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
|
|
|
|
|
|
|
|
include(TokuFeatureDetection)
|
|
|
|
include(TokuSetupCompiler)
|
|
|
|
include(TokuSetupCTest)
|
|
|
|
include(TokuThirdParty)
|
|
|
|
|
|
|
|
set(TOKU_CMAKE_SCRIPT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
|
|
|
include(TokuMergeLibs)
|
|
|
|
|
|
|
|
## need a way to change the name of libs we build
|
|
|
|
set(LIBTOKUPORTABILITY "tokuportability" CACHE STRING "Name of libtokuportability.so")
|
|
|
|
set(LIBTOKUDB "tokufractaltree" CACHE STRING "Name of libtokufractaltree.so")
|
|
|
|
|
2014-03-18 09:02:57 +01:00
|
|
|
set(INSTALL_LIBDIR "lib" CACHE STRING "where to install libs")
|
|
|
|
|
|
|
|
if (USE_VALGRIND AND NOT VALGRIND_INCLUDE_DIR MATCHES NOTFOUND)
|
|
|
|
include_directories(
|
|
|
|
${VALGRIND_INCLUDE_DIR}
|
|
|
|
)
|
2013-09-09 14:02:42 +02:00
|
|
|
endif()
|
2013-09-09 11:32:39 +02:00
|
|
|
include_directories(
|
2014-09-13 00:28:15 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/toku_include
|
2013-09-09 11:32:39 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/portability
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR} ## so you can include <ft/ft-ops.h> from inside src/
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR} ## for logging code
|
|
|
|
)
|
|
|
|
## include where config.h will be generated
|
2014-09-13 00:28:15 +02:00
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}/toku_include)
|
2013-09-09 11:32:39 +02:00
|
|
|
|
|
|
|
## build db.h and include where it will be generated
|
|
|
|
add_subdirectory(buildheader)
|
|
|
|
include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR}/buildheader)
|
|
|
|
|
|
|
|
## default includes and libraries
|
|
|
|
include_directories(SYSTEM
|
|
|
|
/usr/local/include
|
|
|
|
${ZLIB_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
|
|
|
|
## add subdirectories
|
|
|
|
add_subdirectory(util)
|
|
|
|
add_subdirectory(portability)
|
|
|
|
add_subdirectory(ft)
|
|
|
|
add_subdirectory(locktree)
|
|
|
|
add_subdirectory(src)
|
2014-09-13 00:28:15 +02:00
|
|
|
add_subdirectory(utils)
|
2013-09-09 11:32:39 +02:00
|
|
|
|
|
|
|
## subdirectories that just install things
|
2014-09-13 00:28:15 +02:00
|
|
|
#add_subdirectory(include)
|
|
|
|
add_subdirectory(toku_include)
|
cmake fixes for tokudb
cmake/jemalloc.cmake:
for dependencies to work, LIBJEMALLOC should be the target name, not the path
storage/tokudb/CMakeLists.txt:
* check the preconditions
* disable bdb tests (compilation errors)
* set variable, instead of SET_PROPERTY. same effect,
but doesn't fail when a plugin is disabled (that is, a target does not exist)
storage/tokudb/ft-index/CMakeLists.txt:
cmake should not look into examples/ directory,
there is hand-crafted examples/Makefile that
cmake will overwrite
storage/tokudb/ft-index/buildheader/CMakeLists.txt:
the syntax is ADD_EXECUTABLE(target source) and "source" is the file name
storage/tokudb/ft-index/cmake_modules/TokuMergeLibs.cmake:
Libraries must be specified in the specific order,
REMOVE_DUPLICATES cannot be used, because it destroys this order.
(when OSLIBS contains "-lpthread -ljemalloc -lpthread", REMOVE_DUPLICATES
makes it "-lpthread -ljemalloc". But a thread library *must* be *after* jemalloc)
storage/tokudb/ft-index/cmake_modules/TokuSetupCTest.cmake:
* 'which' might print errors to stderr, they are not important, shut them up
* we don't have TOKUDB_DATA, no need to warn about it
* don't configure_file into itself (with input=output)
storage/tokudb/ft-index/cmake_modules/TokuThirdParty.cmake:
jemalloc is built externally to tokudb/ft-index
storage/tokudb/ft-index/ft/CMakeLists.txt:
the syntax is ADD_EXECUTABLE(target source) and "source" is the file name
storage/tokudb/ft-index/ft/tests/CMakeLists.txt:
the syntax is ADD_EXECUTABLE(target source) and "source" is the file name
storage/tokudb/ft-index/locktree/tests/CMakeLists.txt:
the syntax is ADD_EXECUTABLE(target source) and "source" is the file name
storage/tokudb/ft-index/portability/CMakeLists.txt:
s/jemalloc/libjemalloc/
storage/tokudb/ft-index/portability/os_malloc.cc:
unnecessary include file
storage/tokudb/ft-index/portability/tests/CMakeLists.txt:
the syntax is ADD_EXECUTABLE(target source) and "source" is the file name
storage/tokudb/ft-index/src/tests/CMakeLists.txt:
the syntax is ADD_EXECUTABLE(target source) and "source" is the file name
storage/tokudb/ft-index/util/tests/CMakeLists.txt:
the syntax is ADD_EXECUTABLE(target source) and "source" is the file name
storage/tokudb/ft-index/utils/CMakeLists.txt:
the syntax is ADD_EXECUTABLE(target source) and "source" is the file name
2013-09-09 13:57:22 +02:00
|
|
|
#add_subdirectory(examples)
|
2013-09-09 11:32:39 +02:00
|
|
|
|
2013-11-11 09:30:35 +01:00
|
|
|
INSTALL_DOCUMENTATION(README.md README-TOKUDB COMPONENT Server)
|
2013-09-09 11:32:39 +02:00
|
|
|
|
|
|
|
## build tags
|
2013-09-09 14:00:40 +02:00
|
|
|
#include(TokuBuildTagDatabases)
|