CMakeLists.txt 421 字节
Newer Older
1 2
get_property(RPC_DEPS GLOBAL PROPERTY RPC_DEPS)

3 4 5 6 7 8 9 10 11 12 13 14 15 16
set_source_files_properties(fleet.cc PROPERTIES COMPILE_FLAGS
                                                ${DISTRIBUTE_COMPILE_FLAGS})
cc_library(
  fleet
  SRCS fleet.cc
  DEPS framework_proto
       ps_framework_proto
       ps_service
       variable_helper
       scope
       op_registry
       fs
       shell
       ${RPC_DEPS})
17 18

target_link_libraries(fleet z)