-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Augments colcon pkg with dependencies from pyproject file. (#38)
Related to #37 ### Summary This PR introduces the ability to indicate the colcon/ros dependencies of the project via the `pyproject.toml` file. Otherwise, dependencies for the package aren't loaded up, and the ordering when building isn't respected ### Use Add to `pyproject.toml` the following section: ```toml [colcon-package] depend = ["another_pkg_1"] # This will add to both `build_depend` and `exec_depend` following `package.xml` standards build_depend = ["another_pkg_2"] exec_depend = ["another_pkg_3"] test_depend = ["another_pkg_4"] ```
- Loading branch information
1 parent
25a9b95
commit 1e7f10e
Showing
1 changed file
with
34 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters