mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-05-04 08:55:43 +08:00
Select correct externals whether using MSVC2010 or MSVC2013.
This commit is contained in:
@@ -25,6 +25,7 @@ INCLUDEPATH *= $$EXTERNALDIR/include
|
|||||||
|
|
||||||
# and the library path depending on the used compiler
|
# and the library path depending on the used compiler
|
||||||
|
|
||||||
|
win32-msvc2010 {
|
||||||
win32:contains(QMAKE_TARGET.arch, x86_64) {
|
win32:contains(QMAKE_TARGET.arch, x86_64) {
|
||||||
LIBS *= -L$$EXTERNALDIR/vs2010_64/lib
|
LIBS *= -L$$EXTERNALDIR/vs2010_64/lib
|
||||||
}
|
}
|
||||||
@@ -32,6 +33,16 @@ win32:contains(QMAKE_TARGET.arch, x86) {
|
|||||||
LIBS *= -L$$EXTERNALDIR/vs2010_32/lib
|
LIBS *= -L$$EXTERNALDIR/vs2010_32/lib
|
||||||
LIBS += -luser32
|
LIBS += -luser32
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
win32-msvc2013 {
|
||||||
|
win32:contains(QMAKE_TARGET.arch, x86_64) {
|
||||||
|
LIBS *= -L$$EXTERNALDIR/vs2013_64/lib
|
||||||
|
}
|
||||||
|
win32:contains(QMAKE_TARGET.arch, x86) {
|
||||||
|
LIBS *= -L$$EXTERNALDIR/vs2013_32/lib
|
||||||
|
LIBS += -luser32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
win32-g++ {
|
win32-g++ {
|
||||||
WIN_FIND = $$(SYSTEMROOT)\system32\find
|
WIN_FIND = $$(SYSTEMROOT)\system32\find
|
||||||
|
|||||||
Reference in New Issue
Block a user