Skip to content

Commit

Permalink
include ros2launch in rktl_launch
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrm1 committed Feb 18, 2024
1 parent e13d8f5 commit e6270e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/rktl_launch/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
<test_depend>ament_flake8</test_depend>
<test_depend>ament_pep257</test_depend>
<test_depend>python3-pytest</test_depend>
<exec_depend>rktl_perception</exec_depend>
<!-- <exec_depend>rktl_perception</exec_depend> -->
<exec_depend>rktl_game</exec_depend>
<exec_depend>rktl_planner</exec_depend>
<exec_depend>rktl_sim</exec_depend>
<exec_depend>rktl_control</exec_depend>
<exec_depend>rqt_gui</exec_depend>
<exec_depend>ros2launch</exec_depend>

<export>
<build_type>ament_python</build_type>
Expand Down
3 changes: 3 additions & 0 deletions src/rktl_launch/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import os
from glob import glob
from setuptools import find_packages, setup

package_name = 'rktl_launch'
Expand All @@ -10,6 +12,7 @@
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*launch.[pxy][yma]*'))),
],
install_requires=['setuptools'],
zip_safe=True,
Expand Down

0 comments on commit e6270e9

Please sign in to comment.