Merge pull request #32564 from tchaikov/wip-cmake-radosgwd

cmake: let vstart depend on radosgwd

Reviewed-by: Laura Paduano <lpaduano@suse.com>
This commit is contained in:
Kefu Chai 2020-01-09 17:30:28 +08:00 committed by GitHub
commit 05ebfbd162
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -767,8 +767,8 @@ if (WITH_CEPHFS)
add_dependencies(vstart ceph-mds cephfs cython_cephfs)
endif()
if(WITH_RADOSGW)
add_dependencies(vstart radosgw radosgw-admin)
endif(WITH_RADOSGW)
add_dependencies(vstart radosgwd radosgw-admin)
endif()
if(WITH_LTTNG)
add_dependencies(vstart tracepoint_libraries)

View File

@ -523,8 +523,8 @@ if(WITH_RBD)
endif(FREEBSD)
endif(WITH_RBD)
if(WITH_RADOSGW)
add_dependencies(tests radosgw radosgw-admin)
endif(WITH_RADOSGW)
add_dependencies(tests radosgwd radosgw-admin)
endif()
#add dependency from fio just to ensure the plugin build isn't failing
if(WITH_FIO OR WITH_SYSTEM_FIO)
add_dependencies(tests fio_ceph_objectstore)