Skip to content

Commit

Permalink
(hmi) fix catkin_lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh authored May 1, 2024
1 parent 1d4406e commit 162c4d3
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion hmi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit 162c4d3

Please sign in to comment.