[Bug 58513] QMake manager scrambles project files to unusebility
Tom Lueders
tom.lueders at m.eads.net
Mon Aug 11 13:16:02 UTC 2003
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=58513
tom.lueders at m.eads.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |cloudtemple at mksat.net
Status|RESOLVED |UNCONFIRMED
Resolution|FIXED |
------- Additional Comments From tom.lueders at m.eads.net 2003-08-11 13:15 -------
TARGET_DEPS string is invalid again!
I updated today from CVS (11.08.2003). The QMake manager of this version
produces invalid project files again.
Here is the invalid output:
----------------------------------------------
LIBS += ../lib/libMyLib1.a \
../lib/libMyLib2.a \
../lib/libMyLib3.a \
-lqui \
-luuid \
-lrt
TARGETDEPS += ../lib/libMyLib3.a \
../lib/MyLib3 \ // this folder does'nt exist!!
../lib/libMyLib1.a \
../lib/libMyLib3.a \
../lib/libMyLib2.a
----------------------------------------------
The compiler means:
gmake: *** No rule to make target `../lib/libMyLib3.a', needed by
`../bin/myapp'.
* gmake: *** No rule to make target `../lib/MyLib3', needed by `../bin/myapp'.
* gmake: Target `first' not remade because of errors.
* *** Exited with status: 2 ***
The project structure is:
MyProject
|_MyLib1
|_MyLib2
|_MyLib3
|
|_lib // target dir for all libs
|_app // here is the main.cpp located
|_bin // target for the binary
The valid output should be:
----------------------------------------------
TARGETDEPS += ../lib/libMyLib1.a \
../lib/libMyLib3.a \
../lib/libMyLib2.a
----------------------------------------------
Thanks a lot.
Tom
More information about the KDevelop-devel
mailing list