diff options
| author | TheBloke <devnull@localhost> | 2014-07-07 23:32:18 +0100 |
|---|---|---|
| committer | TheBloke <devnull@localhost> | 2014-07-07 23:32:18 +0100 |
| commit | 76c861ed12fe8d8c8c107222eefa10ce5ddb8fab (patch) | |
| tree | a0691d8045cb729546dad102708290410dc0a5e5 /src/shared/shared.pro | |
| parent | 31cab54861e66467b7c6a827ab8b54da6a78fb73 (diff) | |
.pro files - formatting/consistency fixes
Many small formatting changes to the majority of .pro files
Consistent style for Qt version checking, using greaterThan(QT_MAJOR_VERSION, 4)
This seems safest, as would continue to work for a future Qt 6 etc.
Note that this makes redudundant the commit before this one, to organizer.pro
Consistent indenting
Moved some file configuration sections to be together with related sections
Moved some installation-related sections (e.g. OUTDIR/DSTDIR) to be at the bottom,
immediately before the related POST_LINK install lines.
Similarly, in some cases separated out CONFIG(debug,.. checks into separate
LIB/INCLUDE sections (high in file) and installation directory sections (low
in file)
Diffstat (limited to 'src/shared/shared.pro')
| -rw-r--r-- | src/shared/shared.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/shared.pro b/src/shared/shared.pro index 992fd7f2..5f327fa3 100644 --- a/src/shared/shared.pro +++ b/src/shared/shared.pro @@ -21,11 +21,11 @@ INCLUDEPATH += ../bsatk "$(BOOSTPATH)" CONFIG(debug, debug|release) {
LIBS += -L$$OUT_PWD/../bsatk/debug
- LIBS += -lDbgHelp
+ LIBS += -lDbgHelp
QMAKE_CXXFLAGS_DEBUG -= -Zi
QMAKE_CXXFLAGS += -Z7
} else {
- LIBS += -L$$OUT_PWD/../bsatk/release
+ LIBS += -L$$OUT_PWD/../bsatk/release
}
LIBS += -lbsatk
|
