fix linkage issue with boost system

This commit is contained in:
David Gambarin
2022-12-11 09:22:16 +02:00
parent 2871df4938
commit 7e011c390a
9 changed files with 9 additions and 9 deletions

View File

@@ -3,5 +3,5 @@ link_directories(${BOOST_ROOT}/lib)
add_unit_test(
downloader_ut
"downloader_ut.cc"
"orchestration;orchestration_downloader;orchestration_modules;orchestration_tools;environment;config;update_communication;metric;event_is;-lcurl;-lcrypto;-lssl;-lboost_regex"
"orchestration;orchestration_downloader;orchestration_modules;orchestration_tools;environment;config;update_communication;metric;event_is;-lcurl;-lcrypto;-lssl;-lboost_regex;-lboost_system"
)

View File

@@ -3,5 +3,5 @@ link_directories(${BOOST_ROOT}/lib)
add_unit_test(
health_check_ut
"health_check_ut.cc"
"health_check;mainloop;singleton;agent_details;config;logging;metric;event_is;health_check_manager;-lboost_regex"
"health_check;mainloop;singleton;agent_details;config;logging;metric;event_is;health_check_manager;-lboost_regex;-lboost_system"
)

View File

@@ -3,5 +3,5 @@ link_directories(${BOOST_ROOT}/lib)
add_unit_test(
orchestration_modules_ut
"orchestration_policy_ut.cc;url_parser_ut.cc;package_ut.cc;orchestration_status_ut.cc;data_ut.cc;"
"orchestration_modules;config;environment;metric;event_is;time_proxy;-lboost_regex"
"orchestration_modules;config;environment;metric;event_is;time_proxy;-lboost_regex;-lboost_system"
)

View File

@@ -4,5 +4,5 @@ link_directories(${BOOST_ROOT}/lib)
add_unit_test(
package_handler_ut
"package_handler_ut.cc"
"package_handler;orchestration_tools;orchestration_modules;singleton;logging;config;metric;event_is;-lcrypto;-lboost_filesystem;-lboost_regex"
"package_handler;orchestration_tools;orchestration_modules;singleton;logging;config;metric;event_is;-lcrypto;-lboost_filesystem;-lboost_regex;-lboost_system"
)