diff options
Diffstat (limited to 'src/rbd_replay/CMakeLists.txt')
-rw-r--r-- | src/rbd_replay/CMakeLists.txt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/rbd_replay/CMakeLists.txt b/src/rbd_replay/CMakeLists.txt new file mode 100644 index 000000000..63446626a --- /dev/null +++ b/src/rbd_replay/CMakeLists.txt @@ -0,0 +1,44 @@ +set(librbd_replay_types_srcs + ActionTypes.cc) +add_library(rbd_replay_types STATIC ${librbd_replay_types_srcs}) + +set(librbd_replay_srcs + actions.cc + BufferReader.cc + ImageNameMap.cc + PendingIO.cc + rbd_loc.cc + Replayer.cc) +add_library(rbd_replay STATIC ${librbd_replay_srcs}) +target_link_libraries(rbd_replay + PUBLIC rbd_replay_types + PRIVATE librbd librados global) + +add_executable(rbd-replay + rbd-replay.cc) +target_link_libraries(rbd-replay + librbd librados global rbd_replay ceph-common) +install(TARGETS rbd-replay DESTINATION bin) + +set(librbd_replay_ios_srcs + ios.cc) +add_library(rbd_replay_ios STATIC ${librbd_replay_ios_srcs}) +target_link_libraries(rbd_replay_ios librbd librados global) + +if(HAVE_BABELTRACE) + add_executable(rbd-replay-prep + rbd-replay-prep.cc) + target_link_libraries(rbd-replay-prep + rbd_replay + rbd_replay_ios + librbd + librados + ceph-common + global + babeltrace + babeltrace-ctf + Boost::date_time + ) + install(TARGETS rbd-replay-prep DESTINATION bin) +endif(HAVE_BABELTRACE) + |