PDA

View Full Version : problem about multiple project in Kdevelop



coralbird
22nd February 2006, 02:32
In VC++ I can set up a workspace,then add many projcts into it .This fucntion is Usful
when dependence exist between these projects. How can I realize the same function in
Kdevelop?My kdevevelop's version is 3.2.3.

Thanks a lot!

jacek
22nd February 2006, 02:37
What this has to do with Qt programming? Moving to apropriate forum.

wysota
22nd February 2006, 08:22
It depends on the project manager used. For example if you use qmake to manage your projects, you can create subprojects and mark them as dependencies of each other as needed. I think automake has a similar possibility too, but I'm not sure.

coralbird
22nd February 2006, 10:43
sure , for I use qt to develop program,I use qmake to manager my project.can you give me a simple project sample?
thanks a lot!

wysota
22nd February 2006, 11:58
sure , for I use qt to develop program,I use qmake to manager my project.can you give me a simple project sample?
thanks a lot!

In the QMake manager tab you can create a subproject for your project. It is equal to putting SUBDIRS template in your .pro file. You can read more about it in QMake docs.

coralbird
23rd February 2006, 03:49
Thanks. I will test as you described.:)

coralbird
9th March 2006, 02:48
Until today,I find the way to solve this question!thanks All!Special thanks to wysota.