71 lines
1.7 KiB
CMake
71 lines
1.7 KiB
CMake
# Generate C++ sources from Swagger definitions
|
|
set(swagger_files
|
|
api-doc/authorization_cache.json
|
|
api-doc/cache_service.json
|
|
api-doc/collectd.json
|
|
api-doc/column_family.json
|
|
api-doc/commitlog.json
|
|
api-doc/compaction_manager.json
|
|
api-doc/config.json
|
|
api-doc/endpoint_snitch_info.json
|
|
api-doc/error_injection.json
|
|
api-doc/failure_detector.json
|
|
api-doc/gossiper.json
|
|
api-doc/hinted_handoff.json
|
|
api-doc/lsa.json
|
|
api-doc/messaging_service.json
|
|
api-doc/storage_proxy.json
|
|
api-doc/storage_service.json
|
|
api-doc/stream_manager.json
|
|
api-doc/system.json
|
|
api-doc/task_manager.json
|
|
api-doc/task_manager_test.json
|
|
api-doc/utils.json)
|
|
|
|
foreach(f ${swagger_files})
|
|
get_filename_component(fname "${f}" NAME_WE)
|
|
get_filename_component(dir "${f}" DIRECTORY)
|
|
seastar_generate_swagger(
|
|
TARGET scylla_swagger_gen_${fname}
|
|
VAR scylla_swagger_gen_${fname}_files
|
|
IN_FILE "${CMAKE_CURRENT_SOURCE_DIR}/${f}"
|
|
OUT_DIR "${scylla_gen_build_dir}/api/${dir}")
|
|
list(APPEND swagger_gen_files "${scylla_swagger_gen_${fname}_files}")
|
|
endforeach()
|
|
|
|
add_library(api)
|
|
target_sources(api
|
|
PRIVATE
|
|
api.cc
|
|
cache_service.cc
|
|
collectd.cc
|
|
column_family.cc
|
|
commitlog.cc
|
|
compaction_manager.cc
|
|
config.cc
|
|
endpoint_snitch.cc
|
|
error_injection.cc
|
|
authorization_cache.cc
|
|
failure_detector.cc
|
|
gossiper.cc
|
|
hinted_handoff.cc
|
|
lsa.cc
|
|
messaging_service.cc
|
|
storage_proxy.cc
|
|
storage_service.cc
|
|
stream_manager.cc
|
|
system.cc
|
|
task_manager.cc
|
|
task_manager_test.cc
|
|
${swagger_gen_files})
|
|
target_include_directories(api
|
|
PUBLIC
|
|
${CMAKE_SOURCE_DIR}
|
|
${scylla_gen_build_dir})
|
|
target_link_libraries(api
|
|
idl
|
|
wasmtime_bindings
|
|
|
|
Seastar::seastar
|
|
xxHash::xxhash)
|