pro and pri files: remove unneeded empty lines, use spaces for consistency
This commit is contained in:
parent
85f75179ff
commit
8d08c3b58b
|
@ -19,5 +19,5 @@ contains(QMAKE_CXX, cl) {
|
||||||
}
|
}
|
||||||
|
|
||||||
CONFIG(release, debug|release) {
|
CONFIG(release, debug|release) {
|
||||||
DEFINES += NDEBUG
|
DEFINES += NDEBUG
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
HEADERS += $${BASEPATH}tinystr.h \
|
HEADERS += $${BASEPATH}tinystr.h \
|
||||||
$${BASEPATH}tinyxml.h
|
$${BASEPATH}tinyxml.h
|
||||||
SOURCES += $${BASEPATH}tinystr.cpp \
|
SOURCES += $${BASEPATH}tinystr.cpp \
|
||||||
|
|
|
@ -137,5 +137,3 @@ win32 {
|
||||||
HEADERS += ../cli/resource.h
|
HEADERS += ../cli/resource.h
|
||||||
LIBS += -lshlwapi
|
LIBS += -lshlwapi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -7,4 +7,3 @@ INCLUDEPATH += ../../../externals
|
||||||
|
|
||||||
BASEPATH = ../../../../lib/
|
BASEPATH = ../../../../lib/
|
||||||
include($$PWD/../../../lib/lib.pri)
|
include($$PWD/../../../lib/lib.pri)
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,10 @@ INCLUDEPATH += .
|
||||||
OBJECTS_DIR = ../build
|
OBJECTS_DIR = ../build
|
||||||
MOC_DIR = ../build
|
MOC_DIR = ../build
|
||||||
|
|
||||||
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
|
||||||
|
|
||||||
include(../common.pri)
|
include(../common.pri)
|
||||||
|
|
||||||
|
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
||||||
|
|
||||||
# tests
|
# tests
|
||||||
SOURCES += testxmlreport.cpp
|
SOURCES += testxmlreport.cpp
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,10 @@ INCLUDEPATH += .
|
||||||
OBJECTS_DIR = ../build
|
OBJECTS_DIR = ../build
|
||||||
MOC_DIR = ../build
|
MOC_DIR = ../build
|
||||||
|
|
||||||
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
|
||||||
|
|
||||||
include(../common.pri)
|
include(../common.pri)
|
||||||
|
|
||||||
|
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
||||||
|
|
||||||
# tests
|
# tests
|
||||||
SOURCES += testxmlreportv1.cpp
|
SOURCES += testxmlreportv1.cpp
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
# If HAVE_RULES=yes is passed to qmake, use PCRE and enable rules
|
# If HAVE_RULES=yes is passed to qmake, use PCRE and enable rules
|
||||||
contains(HAVE_RULES, [yY][eE][sS]) {
|
contains(HAVE_RULES, [yY][eE][sS]) {
|
||||||
CONFIG += use_pcre_rules
|
CONFIG += use_pcre_rules
|
||||||
}
|
}
|
||||||
|
|
||||||
use_pcre_rules {
|
use_pcre_rules {
|
||||||
DEFINES += HAVE_RULES
|
DEFINES += HAVE_RULES
|
||||||
LIBS += -L../externals -lpcre
|
LIBS += -L../externals -lpcre
|
||||||
INCLUDEPATH += ../externals
|
INCLUDEPATH += ../externals
|
||||||
message("Rules enabled - to disable them and remove the dependency on PCRE, pass HAVE_RULES=no to qmake.")
|
message("Rules enabled - to disable them and remove the dependency on PCRE, pass HAVE_RULES=no to qmake.")
|
||||||
} else {
|
} else {
|
||||||
message("Rules disabled - to enable them, make PCRE available and pass HAVE_RULES=yes to qmake.")
|
message("Rules disabled - to enable them, make PCRE available and pass HAVE_RULES=yes to qmake.")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
TARGET = testrunner
|
TARGET = testrunner
|
||||||
DEPENDPATH += .
|
DEPENDPATH += .
|
||||||
|
|
Loading…
Reference in New Issue