]> git.proxmox.com Git - ceph.git/blob - ceph/src/rgw/driver/dbstore/tests/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / rgw / driver / dbstore / tests / CMakeLists.txt
1 cmake_minimum_required(VERSION 3.14.0)
2 project(dbstore-tests)
3
4 set (CMAKE_LINK_LIBRARIES ${CMAKE_LINK_LIBRARIES} gtest)
5
6 set(dbstore_tests_srcs
7 dbstore_tests.cc)
8
9 include_directories(${CMAKE_INCLUDE_DIR})
10
11 add_executable(unittest_dbstore_tests ${dbstore_tests_srcs})
12 target_link_libraries(unittest_dbstore_tests ${CMAKE_LINK_LIBRARIES})
13 add_ceph_unittest(unittest_dbstore_tests)
14
15 add_executable(unittest_dbstore_mgr_tests dbstore_mgr_tests.cc)
16 target_link_libraries(unittest_dbstore_mgr_tests dbstore gtest_main)
17 add_ceph_unittest(unittest_dbstore_mgr_tests)