Skip to content

Commit

Permalink
build/ops: cmake: do not guard certain tools with WITH_TESTS
Browse files Browse the repository at this point in the history
As a follow-up to d7b493a we need to stop guarding

    ceph-osdomap-tool
    ceph-monstore-tool
    ceph-kvstore-tool

with WITH_TESTS because they have been moved out of the ceph-test package.

Signed-off-by: Nathan Cutler <ncutler@suse.com>
  • Loading branch information
smithfarm committed Jan 10, 2018
1 parent 564a4bd commit dca0dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/CMakeLists.txt
Expand Up @@ -21,6 +21,7 @@ install(TARGETS ceph_scratchtoolpp DESTINATION bin)
add_executable(ceph_radosacl radosacl.cc)
target_link_libraries(ceph_radosacl librados global)
install(TARGETS ceph_radosacl DESTINATION bin)
endif(WITH_TESTS)

add_executable(ceph-osdomap-tool ceph_osdomap_tool.cc)
target_link_libraries(ceph-osdomap-tool os global Boost::program_options)
Expand All @@ -34,7 +35,6 @@ install(TARGETS ceph-monstore-tool DESTINATION bin)
install(PROGRAMS
ceph-monstore-update-crush.sh
DESTINATION ${CMAKE_INSTALL_LIBDIR}/ceph)
endif(WITH_TESTS)

add_executable(ceph-objectstore-tool
ceph_objectstore_tool.cc
Expand Down

0 comments on commit dca0dcb

Please sign in to comment.