From 9c4a258e4159013267928f2b62cac12712224cf8 Mon Sep 17 00:00:00 2001 From: Michael Ripperger Date: Wed, 3 Jan 2024 10:12:04 -0600 Subject: [PATCH] Export dependencies of noether_gui (#209) --- noether_gui/CMakeLists.txt | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/noether_gui/CMakeLists.txt b/noether_gui/CMakeLists.txt index 804722f2..954a1023 100644 --- a/noether_gui/CMakeLists.txt +++ b/noether_gui/CMakeLists.txt @@ -135,4 +135,18 @@ target_compile_definitions(${PROJECT_NAME}_app PRIVATE NOETHER_GUI_PLUGINS="${PR install(DIRECTORY include/${PROJECT_NAME}/ DESTINATION include/${PROJECT_NAME}) # Package configuration -configure_package(NAMESPACE noether TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_plugins ${PROJECT_NAME}_app) +configure_package( + NAMESPACE noether + TARGETS + ${PROJECT_NAME} + ${PROJECT_NAME}_plugins + ${PROJECT_NAME}_app + DEPENDENCIES + Eigen3 + "Boost REQUIRED COMPONENTS program_options" + boost_plugin_loader + noether_tpp + "PCL REQUIRED COMPONENTS io surface" + "Qt5 REQUIRED COMPONENTS Widgets" + yaml-cpp +)