##// END OF EJS Templates
minor . missing prefix for w32
Michal Klocek -
r1025:c4bf26b025a2
parent child
Show More
@@ -74,12 +74,11 development_build: {
74 74 }
75 75
76 76 CONFIG(debug, debug|release) {
77 mac: LIBRARY = $$join(LIBRARY_NAME,,,_debug)
78 win32: LIBRARY = $$join(LIBRARY_NAME,,,d)
79 linux: LIBRARY = $$LIBRARY_NAME
77 mac: LIBRARY_NAME = $$join(LIBRARY_NAME,,,_debug)
78 win32: LIBRARY_NAME = $$join(LIBRARY_NAME,,,d)
80 79 }
81 80
82 LIBS += -l$$LIBRARY
81 LIBS += -l$$LIBRARY_NAME
83 82
84 83
85 84 mac: {
@@ -7,11 +7,6 QT = core gui
7 7
8 8 win32-msvc*: LIBS += User32.lib
9 9
10 CONFIG(debug, debug|release) {
11 mac: TARGET = $$join(TARGET,,,_debug)
12 win32: TARGET = $$join(TARGET,,d)
13 }
14
15 10 LIBS -= -l$$LIBRARY_NAME
16 11
17 12 SOURCES += \
General Comments 0
You need to be logged in to leave comments. Login now