Skip to content

Commit 34e9f29

Browse files
committed
calibration script, mode names with same size to avoid moving items in the gui header
1 parent 8f5758b commit 34e9f29

4 files changed

Lines changed: 943 additions & 8 deletions

File tree

CMakeLists.txt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,15 +206,21 @@ install(DIRECTORY
206206
OPTIONAL)
207207

208208
# ROS 2 package finalization
209-
# Install launch files, config files, etc.
209+
# Install launch files, config files, scripts, etc.
210210
install(DIRECTORY
211211
launch
212212
config
213213
DESTINATION share/${PROJECT_NAME}
214214
OPTIONAL)
215215

216+
# Install scripts directory with proper permissions
217+
install(DIRECTORY
218+
scripts/
219+
DESTINATION share/${PROJECT_NAME}/scripts
220+
USE_SOURCE_PERMISSIONS
221+
OPTIONAL)
222+
216223
ament_export_dependencies(rosidl_default_runtime)
217-
ament_package()
218224

219225
# Generate car.lua from the hostname at build time and install it.
220226
# The generated file will be written to the build tree and then installed
@@ -235,3 +241,6 @@ add_custom_target(generate_car_lua ALL DEPENDS ${GENERATED_CAR_LUA})
235241
# Install the generated file into the package share directory so it's available
236242
# after 'colcon build' under $(ros2 pkg prefix ut_automata)/share/ut_automata/config/car.lua
237243
install(FILES ${GENERATED_CAR_LUA} DESTINATION share/${PROJECT_NAME}/config)
244+
245+
# ament_package() MUST be the last line
246+
ament_package()

0 commit comments

Comments
 (0)