Marc Kupietz | ed0bfcf | 2021-03-14 14:56:15 +0100 | [diff] [blame] | 1 | cmake_minimum_required(VERSION 3.9) |
| 2 | project(collocatordb VERSION 1.2.0 DESCRIPTION "Storing and retrieving collocation counts based on RocksDB") |
| 3 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -fno-rtti") |
| 4 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") |
| 5 | |
| 6 | include(GNUInstallDirs) |
| 7 | include_directories(/usr/local/include) |
| 8 | find_library(ROCKSDB librocksdb.so.5.11) |
Marc Kupietz | 1b09e4d | 2021-03-14 15:20:19 +0100 | [diff] [blame^] | 9 | find_library(ROCKSDB_STATIC librocksdb.a) |
| 10 | |
Marc Kupietz | ed0bfcf | 2021-03-14 14:56:15 +0100 | [diff] [blame] | 11 | enable_testing() |
| 12 | add_library(collocatordb SHARED src/collocatordb.cc) |
| 13 | target_link_libraries(collocatordb pthread rt snappy z bz2 lz4 zstd ${ROCKSDB}) |
| 14 | set_target_properties(collocatordb PROPERTIES |
| 15 | VERSION ${PROJECT_VERSION} |
| 16 | SOVERSION 1 |
| 17 | PUBLIC_HEADER src/collocatordb.h) |
| 18 | |
| 19 | add_library(collocatordb_static STATIC src/collocatordb.cc) |
Marc Kupietz | 1b09e4d | 2021-03-14 15:20:19 +0100 | [diff] [blame^] | 20 | target_link_libraries(collocatordb_static ${ROCKSDB_STATIC} pthread rt snappy z bz2 lz4 zstd) |
Marc Kupietz | ed0bfcf | 2021-03-14 14:56:15 +0100 | [diff] [blame] | 21 | |
| 22 | add_executable(basic_test tests/basic_test.c tests/acutest.h) |
| 23 | TARGET_LINK_LIBRARIES(basic_test ${ROCKSDB} collocatordb) |
| 24 | add_test(BASIC_TEST basic_test) |
| 25 | |
Marc Kupietz | 1b09e4d | 2021-03-14 15:20:19 +0100 | [diff] [blame^] | 26 | add_executable(static_library_test tests/basic_test.c tests/acutest.h) |
| 27 | TARGET_LINK_LIBRARIES(static_library_test collocatordb_static) |
| 28 | add_test(STATIC_LIBRARY_TEST static_library_test) |
| 29 | |
Marc Kupietz | ed0bfcf | 2021-03-14 14:56:15 +0100 | [diff] [blame] | 30 | configure_file(collocatordb.pc.in collocatordb.pc @ONLY) |
| 31 | target_include_directories(collocatordb PRIVATE .) |
| 32 | install(TARGETS collocatordb collocatordb_static |
| 33 | LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} |
| 34 | PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
| 35 | install(FILES ${CMAKE_BINARY_DIR}/collocatordb.pc |
| 36 | DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/pkgconfig) |
| 37 | |
| 38 | # Install library |
| 39 | install(TARGETS ${PROJECT_NAME} DESTINATION lib/${PROJECT_NAME}) |