From 162c4d3f7e9b6145fce4f1bdfd66a47b0a0bd0ec Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Wed, 1 May 2024 10:03:17 +0200 Subject: [PATCH] (hmi) fix catkin_lint issues --- hmi/CMakeLists.txt | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/hmi/CMakeLists.txt b/hmi/CMakeLists.txt index 7bb92e6..b9bb107 100644 --- a/hmi/CMakeLists.txt +++ b/hmi/CMakeLists.txt @@ -7,13 +7,27 @@ catkin_python_setup() catkin_package() +install(PROGRAMS + scripts/dragonfly_restart_mock + scripts/multi_client + scripts/qr_code_decoder + scripts/string_topic_answerer + src/${PROJECT_NAME}/abstract_server.py + tools/console_answerer + tools/continue_gui + tools/conversation_playback + tools/noop_server + tools/random_answerer + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) + ############# ## Testing ## ############# if(CATKIN_ENABLE_TESTING) find_package(catkin_lint_cmake REQUIRED) - catkin_add_catkin_lint_test(-W2) + catkin_add_catkin_lint_test("-W2 --ignore UNKNOWN_PACKAGE") catkin_add_nosetests(test) endif()