Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
When working with a qmake subdirs project you may want to share configuration between multiple projects. In a less common case you may including a external project within your own as code and want ...
#3: Post edited
How do I communicate with a subproject?
- How do I communicate with a subproject in qmake?
When working with a subdirs project you may want to share configuration between multiple projects. In a less common case you may including a external project within your own as code and want to configure the build of the included project.- Either way, the solution is to communicate decisions made in the master project to it's subprojects.
- But how?
- When working with a qmake subdirs project you may want to share configuration between multiple projects. In a less common case you may including a external project within your own as code and want to configure the build of the included project.
- Either way, the solution is to communicate decisions made in the master project to it's subprojects.
- But how?
#1: Initial revision
How do I communicate with a subproject?
When working with a subdirs project you may want to share configuration between multiple projects. In a less common case you may including a external project within your own as code and want to configure the build of the included project. Either way, the solution is to communicate decisions made in the master project to it's subprojects. But how?