I have two Qt projects.Let say 1.pro and 2.pro.How to combine those two projects.Please help me to solve this.
I have two Qt projects.Let say 1.pro and 2.pro.How to combine those two projects.Please help me to solve this.
Hello!
If you want to include a project from another project you can do that by using include.
For example inside 1.pro you would have
Br,Code:include(../path/to/otherproject/2.pro)
Villep