Multi-Level SUBDIRS Project Dependencies
Unsolved
General and Desktop
-
I have a multi-level SUBDIRS project that I am having trouble trying to define dependencies for. Take for example the following project structure:
- Project A (subdirs)
- Project A.1 (subdirs)
- Project A.1.1 (lib)
- Project A.1.2 (app)
- Project A.2 (subdirs)
- Project A.2.1 (lib)
- Project A.2.2 (app)
- Project A.3 (subdirs)
- Project A.3.1 (lib)
- Project A.3.2 (app)
- Project A.1 (subdirs)
Now lets say the app in Project A.3.2 depends on the library from Project A.1.1. How do I go about setting the dependencies in the SUBDIRS projects? I know in a SUBDIRS project you can set the dependencies for immediate subdirectory projects... but that only works for Projects on the same level of depth. How do I set up dependencies for SUBDIRS projects that go beyond one level of depth?
- Project A (subdirs)