[Bug 61794] New: QMake Mangager scrambles dependencies in pro-files (Sources from 29.07.2003)

Tom Lueders tom.lueders at m.eads.net
Tue Jul 29 10:04:03 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=61794     
           Summary: QMake Mangager scrambles dependencies in pro-files
                    (Sources from 29.07.2003)
           Product: kdevelop
           Version: unspecified
          Platform: Compiled Sources
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: general
        AssignedTo: kdevelop-devel at kdevelop.org
        ReportedBy: tom.lueders at m.eads.net


Version:            (using KDE KDE 3.1.2)
Installed from:    Compiled From Sources
Compiler:          gcc (GCC) 3.3 20030226 (prerelease) (SuSE Linux) 
OS:          Linux

Checking any boxes in the "Link convenience libraries inside project"-listview in the "Libraries"-tab of any subproject
in gideons (Sources from 29.07.2003) QMake Manager ends in an non working pro-file.

Result:

LIBS += ../mylib1../lib/libmylib1.a \
        ../mylib2../lib/libmylib1.a
TARGETDEPS += ../mylib1../lib/libmylib1.a \
        		../mylib2../lib/libmylib1.a

This result is'nt working because the compiler tells me:
* gmake: *** No rule to make target `../mylib1../lib/libmylib1.a', needed by `../bin/myapp'. 
* gmake: *** No rule to make target `../mylib2../lib/libmylib2.a', needed by `../bin/myapp'.

Correct (hand made) lines are:
LIBS += -lmylib1 \
	     -lmylib2
TARGETDEPS += ../mylib1 \
			    ../mylib2

Please fix this.
Thanks.




More information about the KDevelop-devel mailing list