Skip to content

Commit d5d40ac

Browse files
committed
Use append (+=) operator, not unique (*=)
1 parent 88207ed commit d5d40ac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

gridcoinresearch.pro

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ win32 {
1010
DEFINES += _WIN32_WINNT=0x0501 WINVER=0x0501
1111
lessThan(QT_VERSION, 5.0.0) {
1212
CONFIG += qaxcontainer
13-
}
13+
}
1414
else {
1515
QT += axcontainer
1616
}
@@ -68,15 +68,15 @@ contains(RELEASE, 1) {
6868

6969
!win32 {
7070
# for extra security against potential buffer overflows: enable GCCs Stack Smashing Protection
71-
QMAKE_CXXFLAGS *= -fstack-protector-all --param ssp-buffer-size=1
72-
QMAKE_LFLAGS *= -fstack-protector-all --param ssp-buffer-size=1
71+
QMAKE_CXXFLAGS += -fstack-protector-all --param ssp-buffer-size=1
72+
QMAKE_LFLAGS += -fstack-protector-all --param ssp-buffer-size=1
7373
# We need to exclude this for Windows cross compile with MinGW 4.2.x, as it will result in a non-working executable!
7474
# This can be enabled for Windows, when we switch to MinGW >= 4.4.x.
7575
} else {
7676
# for extra security on Windows: enable ASLR and DEP via GCC linker flags
77-
QMAKE_LFLAGS *= -Wl,--dynamicbase -Wl,--nxcompat
77+
QMAKE_LFLAGS += -Wl,--dynamicbase -Wl,--nxcompat
7878
# on Windows: enable GCC large address aware linker flag
79-
QMAKE_LFLAGS *= -Wl,--large-address-aware
79+
QMAKE_LFLAGS += -Wl,--large-address-aware
8080
}
8181

8282
# use: qmake "USE_QRCODE=1"

0 commit comments

Comments
 (0)