-
Help
DescriptionI am working on multiple targets projects, which are implemented in separate git projects. My goal is to combine these projects in a single (parent) project using git submodules and then be able to use tar_read()/tar_make() in the main project, to access targets from the submodules. I have read section 8.8 Multiple projects, which however assumes a shared folder for all the target scripts. I instead have projects with separate target scripts, that live in subdirectories.
Using
I am able to read data when I have used It would be possible, when I use the following configuration:
But when Is there any way to set the root directory for a subproject? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Depending on how you set up each |
Beta Was this translation helpful? Give feedback.
-
I have a setting where I use the
where
and downstream targets can be made dependent on Would something like this satisfy your usecase? |
Beta Was this translation helpful? Give feedback.
I have a setting where I use the
main
project for orchestrating subprojects. If I would try to transpose my setting onto your problem, it would look something like this for the parent directory pipeline:where
and downstream targets can be made dependent on
compiled_submoduleA
. @wlandau already suggested above how targets in submodules can…