]> git.proxmox.com Git - ceph.git/blob - ceph/src/tools/immutable_object_cache/CMakeLists.txt
import 15.2.0 Octopus source
[ceph.git] / ceph / src / tools / immutable_object_cache / CMakeLists.txt
1 set(ceph_immutable_object_cache_files
2 ObjectCacheStore.cc
3 CacheController.cc
4 CacheServer.cc
5 CacheClient.cc
6 CacheSession.cc
7 SimplePolicy.cc
8 Types.cc
9 )
10 add_library(ceph_immutable_object_cache_lib STATIC ${ceph_immutable_object_cache_files})
11
12 add_executable(ceph-immutable-object-cache
13 main.cc)
14 target_link_libraries(ceph-immutable-object-cache
15 ceph_immutable_object_cache_lib
16 librados
17 StdFilesystem::filesystem
18 global)
19 install(TARGETS ceph-immutable-object-cache DESTINATION bin)