Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions bundles/remote_services/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,39 @@ if (REMOTE_SERVICE_ADMIN)
#add_subdirectory(remote_service_admin_shm)
endif ()

if (BUILD_RSA_DISCOVERY_ETCD AND BUILD_RSA_REMOTE_SERVICE_ADMIN_DFI)
add_celix_container(remote-services-dfi
NAME "server"
GROUP "remote-services/remote-services-dfi"
BUNDLES
Celix::rsa_discovery_etcd
Celix::rsa_topology_manager
Celix::rsa_dfi
Celix::shell
Celix::shell_tui
Celix::log_admin

celix_remote_interceptors_example
calculator
PROPERTIES
RSA_PORT=18888
)

add_celix_container(remote-services-dfi-client
NAME "client"
GROUP "remote-services/remote-services-dfi"
BUNDLES
Celix::rsa_topology_manager
Celix::rsa_dfi Celix::shell
Celix::shell_tui
Celix::log_admin
Celix::rsa_discovery_etcd
celix_remote_interceptors_example
calculator_shell
PROPERTIES
RSA_PORT=28888
)
endif()
endif (REMOTE_SERVICE_ADMIN)


35 changes: 0 additions & 35 deletions bundles/remote_services/examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,38 +46,3 @@ add_subdirectory(interceptors)
# BUNDLES org.apache.celix.calc.api.Calculator_proxy
# )
# endif ()


if (BUILD_RSA_DISCOVERY_ETCD AND BUILD_RSA_REMOTE_SERVICE_ADMIN_DFI)
add_celix_container(remote-services-dfi
NAME "server"
GROUP "remote-services/remote-services-dfi"
BUNDLES
Celix::rsa_discovery_etcd
Celix::rsa_topology_manager
Celix::rsa_dfi
Celix::shell
Celix::shell_tui
Celix::log_admin

celix_remote_interceptors_example
calculator
PROPERTIES
RSA_PORT=18888
)

add_celix_container(remote-services-dfi-client
NAME "client"
GROUP "remote-services/remote-services-dfi"
BUNDLES
Celix::rsa_topology_manager
Celix::rsa_dfi Celix::shell
Celix::shell_tui
Celix::log_admin
Celix::rsa_discovery_etcd
celix_remote_interceptors_example
calculator_shell
PROPERTIES
RSA_PORT=28888
)
endif ()