Skip to content

Commit

Permalink
CMakeLists: add vstart-rados target
Browse files Browse the repository at this point in the history
No mds or radosgw.  Add rados CLI.

Signed-off-by: Sage Weil <sage@redhat.com>
  • Loading branch information
liewegas committed Dec 13, 2016
1 parent df052e7 commit 2b6e948
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -934,20 +934,25 @@ configure_file(
add_subdirectory(brag)

# Everything you need to spin up a cluster with vstart.sh
add_custom_target(vstart DEPENDS
add_custom_target(vstart-base DEPENDS
ceph-osd
ceph-mon
ceph-mgr
ceph-authtool
ceph-conf
monmaptool
crushtool
rados)

add_custom_target(vstart DEPENDS
vstart-base
cython_rados
ceph-mds)
if(WITH_RADOSGW)
add_dependencies(vstart radosgw radosgw-admin)
endif(WITH_RADOSGW)


# Everything you need to run CephFS tests
add_custom_target(cephfs_testing DEPENDS
vstart
Expand Down

0 comments on commit 2b6e948

Please sign in to comment.