[Bug 65194] New: qmake manager generates incorrect library path

Stephen Wardlaw swardlaw at ivdx.com
Mon Sep 29 18:47:05 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=65194     
           Summary: qmake manager generates incorrect library path
           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: swardlaw at ivdx.com


Version:           3.0a7 (using KDE KDE 3.1.4)
Installed from:    Compiled From Sources
OS:          Linux

In a project where the root type is "subdirs" and having a static library directory "Libs" and a "src" directory containing the main application.
When the "Libs" box is checked in the "Libraries" tab of the "src" qmake manager wizard, the "src.pro" file entries are:

LIBS += ../Libs/home/swdevelop/qtdemo/bin/libtest.a \
        /home/swdevelop/qtdemo/bin/libtest.a 
TARGETDEPS += ../Libs/home/swdevelop/qtdemo/bin/libtest.a 

This should be:

LIBS += /home/swdevelop/qtdemo/bin/libtest.a 
        
TARGETDEPS += /home/swdevelop/qtdemo/bin/libtest.a 

When the "src.pro" file is hand edited, the project links correctly.




More information about the KDevelop-devel mailing list