Marc Kupietz | ed0bfcf | 2021-03-14 14:56:15 +0100 | [diff] [blame] | 1 | cmake_minimum_required(VERSION 3.9) |
Marc Kupietz | 3919b63 | 2021-03-15 15:03:48 +0100 | [diff] [blame] | 2 | project(collocatordb VERSION 1.3.0 DESCRIPTION "Storing and retrieving collocation counts based on RocksDB") |
Marc Kupietz | 673bd81 | 2021-03-14 17:27:44 +0100 | [diff] [blame] | 3 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -fno-rtti -std=c++11 -std=gnu++11") |
Marc Kupietz | ed0bfcf | 2021-03-14 14:56:15 +0100 | [diff] [blame] | 4 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") |
| 5 | |
| 6 | include(GNUInstallDirs) |
Marc Kupietz | 15f56e7 | 2021-03-15 14:58:13 +0100 | [diff] [blame] | 7 | |
| 8 | # the RPATH to be used when installing, but only if it's not a system directory |
| 9 | list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/lib" isSystemDir) |
| 10 | if("${isSystemDir}" STREQUAL "-1") |
| 11 | set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") |
| 12 | endif("${isSystemDir}" STREQUAL "-1") |
| 13 | |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame^] | 14 | include_directories(/usr/local/include /opt/homebrew/include) |
| 15 | link_directories(/usr/local/lib64 /usr/local/lib /usr/lib64 /usr/lib /opt/homebrew/lib) |
| 16 | if (1 AND APPLE) |
| 17 | message("MacOS deteted") |
| 18 | set(LIBRT "") |
| 19 | find_library(ROCKSDB NAMES librocksdb.a) |
| 20 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -flat_namespace") |
| 21 | set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -flat_namespace") |
| 22 | else() |
| 23 | set(LIBRT "rt") |
| 24 | find_library(ROCKSDB NAMES librocksdb.so.5.11) |
| 25 | endif() |
Marc Kupietz | 1b09e4d | 2021-03-14 15:20:19 +0100 | [diff] [blame] | 26 | find_library(ROCKSDB_STATIC librocksdb.a) |
| 27 | |
Marc Kupietz | ed0bfcf | 2021-03-14 14:56:15 +0100 | [diff] [blame] | 28 | enable_testing() |
| 29 | add_library(collocatordb SHARED src/collocatordb.cc) |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame^] | 30 | |
| 31 | target_link_libraries(collocatordb pthread ${LIBRT} snappy z bz2 lz4 zstd ${ROCKSDB} dl) |
| 32 | |
Marc Kupietz | ed0bfcf | 2021-03-14 14:56:15 +0100 | [diff] [blame] | 33 | set_target_properties(collocatordb PROPERTIES |
| 34 | VERSION ${PROJECT_VERSION} |
| 35 | SOVERSION 1 |
| 36 | PUBLIC_HEADER src/collocatordb.h) |
| 37 | |
| 38 | add_library(collocatordb_static STATIC src/collocatordb.cc) |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame^] | 39 | target_link_libraries(collocatordb_static ${ROCKSDB_STATIC} pthread ${LIBRT} snappy z bz2 lz4 zstd dl) |
Marc Kupietz | ed0bfcf | 2021-03-14 14:56:15 +0100 | [diff] [blame] | 40 | |
| 41 | add_executable(basic_test tests/basic_test.c tests/acutest.h) |
| 42 | TARGET_LINK_LIBRARIES(basic_test ${ROCKSDB} collocatordb) |
| 43 | add_test(BASIC_TEST basic_test) |
| 44 | |
Marc Kupietz | 1b09e4d | 2021-03-14 15:20:19 +0100 | [diff] [blame] | 45 | add_executable(static_library_test tests/basic_test.c tests/acutest.h) |
| 46 | TARGET_LINK_LIBRARIES(static_library_test collocatordb_static) |
| 47 | add_test(STATIC_LIBRARY_TEST static_library_test) |
| 48 | |
Marc Kupietz | ed0bfcf | 2021-03-14 14:56:15 +0100 | [diff] [blame] | 49 | # Install library |
Marc Kupietz | 8f977ca | 2021-03-22 17:52:52 +0100 | [diff] [blame] | 50 | install(TARGETS ${PROJECT_NAME} collocatordb_static |
Marc Kupietz | 15f56e7 | 2021-03-15 14:58:13 +0100 | [diff] [blame] | 51 | LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} |
Marc Kupietz | d15845c | 2022-04-11 22:28:11 +0200 | [diff] [blame] | 52 | ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} |
Marc Kupietz | 15f56e7 | 2021-03-15 14:58:13 +0100 | [diff] [blame] | 53 | PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame^] | 54 | |
| 55 | if (1 AND APPLE) |
| 56 | add_custom_command(TARGET collocatordb POST_BUILD |
| 57 | COMMAND install_name_tool -id "/usr/local/lib/libcollocatordb.1.dylib" $<TARGET_FILE:collocatordb>) |
| 58 | endif() |