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) {
|
||||
DEFINES += NDEBUG
|
||||
DEFINES += NDEBUG
|
||||
}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
HEADERS += $${BASEPATH}tinystr.h \
|
||||
$${BASEPATH}tinyxml.h
|
||||
SOURCES += $${BASEPATH}tinystr.cpp \
|
||||
|
|
|
@ -137,5 +137,3 @@ win32 {
|
|||
HEADERS += ../cli/resource.h
|
||||
LIBS += -lshlwapi
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -7,4 +7,3 @@ INCLUDEPATH += ../../../externals
|
|||
|
||||
BASEPATH = ../../../../lib/
|
||||
include($$PWD/../../../lib/lib.pri)
|
||||
|
||||
|
|
|
@ -5,10 +5,10 @@ INCLUDEPATH += .
|
|||
OBJECTS_DIR = ../build
|
||||
MOC_DIR = ../build
|
||||
|
||||
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
||||
|
||||
include(../common.pri)
|
||||
|
||||
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
||||
|
||||
# tests
|
||||
SOURCES += testxmlreport.cpp
|
||||
|
||||
|
|
|
@ -5,10 +5,10 @@ INCLUDEPATH += .
|
|||
OBJECTS_DIR = ../build
|
||||
MOC_DIR = ../build
|
||||
|
||||
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
||||
|
||||
include(../common.pri)
|
||||
|
||||
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
||||
|
||||
# tests
|
||||
SOURCES += testxmlreportv1.cpp
|
||||
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
# If HAVE_RULES=yes is passed to qmake, use PCRE and enable rules
|
||||
contains(HAVE_RULES, [yY][eE][sS]) {
|
||||
CONFIG += use_pcre_rules
|
||||
CONFIG += use_pcre_rules
|
||||
}
|
||||
|
||||
use_pcre_rules {
|
||||
DEFINES += HAVE_RULES
|
||||
LIBS += -L../externals -lpcre
|
||||
INCLUDEPATH += ../externals
|
||||
message("Rules enabled - to disable them and remove the dependency on PCRE, pass HAVE_RULES=no to qmake.")
|
||||
DEFINES += HAVE_RULES
|
||||
LIBS += -L../externals -lpcre
|
||||
INCLUDEPATH += ../externals
|
||||
message("Rules enabled - to disable them and remove the dependency on PCRE, pass HAVE_RULES=no to qmake.")
|
||||
} 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
|
||||
TARGET = testrunner
|
||||
DEPENDPATH += .
|
||||
|
|
Loading…
Reference in New Issue