| Summary: | Project scopes are not linket in under QMake projects | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | John M�rck Hansen <john> |
| Component: | Build tools: QMake | Assignee: | KDevelop Developers <kdevelop-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 3.0.0a4 | ||
| Target Milestone: | --- | ||
| Platform: | RedHat Enterprise Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
Configurations made in the qmake configuration dialog e.g. extra include/library paths are also not incorporated in the generated makefiles evdsande Fixed in current SVN. *** Bug 74099 has been marked as a duplicate of this bug. *** *** Bug 74810 has been marked as a duplicate of this bug. *** |
Version: 3.0.0a4 (using KDE KDE 3.1) Installed from: RedHat RPMs OS: Linux When I add a new project scope under a Trolltech project (QMake-project). The files du not get compilet and linked in. The project file (src.pro) does contain the scope (in this case 'dbwindow'): ----------------------------------------------------------------------------- SOURCES += tappwindow.cpp \ main.cpp HEADERS += tappwindow.h TEMPLATE = app CONFIG += release \ warn_on TARGET = ../bin/alnimbus dbwindow{ SOURCES += tdbobjectwidget.cpp \ tdbtableswidget.cpp \ tdbwindow.cpp HEADERS += tdbobjectwidget.h \ tdbtableswidget.h \ tdbwindow.h } --------------------------------------------------- I know this can be fixed by adding the name 'dbwindow' to the CONFIG variable like this: CONFIG += release \ warn_on \ dbwindow This must be a bug in the *.pro project file updater code.