Multi-Level SUBDIRS Project Dependencies
Unsolved
General and Desktop
-
wrote on 20 Sept 2016, 00:47 last edited by
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)
-
wrote on 20 Sept 2016, 07:05 last edited by
You can set
Project A.3 (subdirs)
to depend onProject A.1 (subdirs)
of course this create a problem ifProject A.1.2 (app)
depends onProject A.3.1 (lib)
1/2