From afc5423e92cdb85db4cea5052a1c52db0f457f8f Mon Sep 17 00:00:00 2001 From: Michael Ripperger Date: Thu, 28 Dec 2023 16:54:32 -0600 Subject: [PATCH] Export dependencies of noether_gui --- 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 +)