From 6981d0630306be191fbc40bd1ed62c6ca4536b2d Mon Sep 17 00:00:00 2001 From: Ned Wright Date: Thu, 1 Feb 2024 10:25:32 +0000 Subject: [PATCH] Add targets dependencies --- nodes/attachment_registration_manager/CMakeLists.txt | 2 ++ nodes/http_transaction_handler/CMakeLists.txt | 2 ++ nodes/orchestration/CMakeLists.txt | 2 ++ 3 files changed, 6 insertions(+) diff --git a/nodes/attachment_registration_manager/CMakeLists.txt b/nodes/attachment_registration_manager/CMakeLists.txt index 36cc90e..02db893 100755 --- a/nodes/attachment_registration_manager/CMakeLists.txt +++ b/nodes/attachment_registration_manager/CMakeLists.txt @@ -17,6 +17,8 @@ target_link_libraries(attachment_registration_manager -Wl,--end-group ) +add_dependencies(attachment_registration_manager ngen_core) + install(TARGETS attachment_registration_manager DESTINATION bin) install(TARGETS attachment_registration_manager DESTINATION attachment_registration_manager_service/bin) diff --git a/nodes/http_transaction_handler/CMakeLists.txt b/nodes/http_transaction_handler/CMakeLists.txt index 9981b99..2062def 100755 --- a/nodes/http_transaction_handler/CMakeLists.txt +++ b/nodes/http_transaction_handler/CMakeLists.txt @@ -41,6 +41,8 @@ target_link_libraries(cp-nano-http-transaction-handler -Wl,--end-group ) +add_dependencies(cp-nano-http-transaction-handler ngen_core) + install(TARGETS cp-nano-http-transaction-handler DESTINATION bin) install(TARGETS cp-nano-http-transaction-handler DESTINATION http_transaction_handler_service/bin) diff --git a/nodes/orchestration/CMakeLists.txt b/nodes/orchestration/CMakeLists.txt index c83ef96..43a10dd 100755 --- a/nodes/orchestration/CMakeLists.txt +++ b/nodes/orchestration/CMakeLists.txt @@ -33,6 +33,8 @@ target_link_libraries( -Wl,--end-group ) +add_dependencies(orchestration_comp ngen_core) + install(TARGETS orchestration_comp DESTINATION bin) install(TARGETS orchestration_comp DESTINATION orchestration/bin)