Skip to content

Commit aff425b

Browse files
committed
Install ament resource marker for elevation_mapping_cupy
1 parent baee45d commit aff425b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

elevation_mapping_cupy/setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@
2323
],
2424
},
2525
data_files=[
26+
(os.path.join('share', 'ament_index', 'resource_index', 'packages'),
27+
[os.path.join('resource', package_name)]),
2628
(os.path.join('share', package_name, 'launch'), glob('launch/*.launch.py')),
2729
*[(os.path.join('share', package_name, os.path.dirname(yaml_file)), [yaml_file]) for yaml_file in glob('config/**/*.yaml', recursive=True)],
2830
# also the .*dat files
2931
*[(os.path.join('share', package_name, os.path.dirname(dat_file)), [dat_file]) for dat_file in glob('config/**/*.dat', recursive=True)],
3032
# add rviz files
3133
*[(os.path.join('share', package_name, os.path.dirname(rviz_file)), [rviz_file]) for rviz_file in glob('rviz/**/*.rviz', recursive=True)],
32-
(os.path.join('share', package_name), ['package.xml']),
34+
(os.path.join('share', package_name), ['package.xml', os.path.join('resource', package_name)]),
3335
],
3436
)

0 commit comments

Comments
 (0)