summaryrefslogtreecommitdiffstats
path: root/src/angle
diff options
context:
space:
mode:
Diffstat (limited to 'src/angle')
-rw-r--r--src/angle/src/common/common.pri12
-rw-r--r--src/angle/src/config.pri19
2 files changed, 15 insertions, 16 deletions
diff --git a/src/angle/src/common/common.pri b/src/angle/src/common/common.pri
index 8806c03c95..c7d2a2d5ae 100644
--- a/src/angle/src/common/common.pri
+++ b/src/angle/src/common/common.pri
@@ -15,17 +15,17 @@ win32-msvc2012 {
error("Cannot determine DirectX SDK location. Please set DXSDK_DIR environment variable.")
}
- DXINC_DIR = $$quote($${DX_DIR}Include)
+ DXINC_DIR = $${DX_DIR}Include
contains(QT_ARCH, x86_64) {
- DXLIB_DIR = $$quote($${DX_DIR}Lib\\x64)
+ DXLIB_DIR = $${DX_DIR}Lib\\x64
} else {
- DXLIB_DIR = $$quote($${DX_DIR}Lib\\x86)
+ DXLIB_DIR = $${DX_DIR}Lib\\x86
}
equals(QMAKE_TARGET.arch, x86_64) {
- FXC = "\"$${DX_DIR}Utilities\\bin\\x64\\fxc.exe\""
+ FXC = \"$${DX_DIR}Utilities\\bin\\x64\\fxc.exe\"
} else {
- FXC = "\"$${DX_DIR}Utilities\\bin\\x86\\fxc.exe\""
+ FXC = \"$${DX_DIR}Utilities\\bin\\x86\\fxc.exe\"
}
msvc {
@@ -36,7 +36,7 @@ win32-msvc2012 {
# Similarly we want the MinGW linker to use the import libraries shipped with the compiler
# instead of those from the SDK which cause a crash on startup.
- LIBS += -L$$DXLIB_DIR
+ LIBS += -L\"$$DXLIB_DIR\"
}
}
diff --git a/src/angle/src/config.pri b/src/angle/src/config.pri
index 4e52358205..73fbc2e13b 100644
--- a/src/angle/src/config.pri
+++ b/src/angle/src/config.pri
@@ -3,7 +3,7 @@
ANGLE_DIR = $$(ANGLE_DIR)
isEmpty(ANGLE_DIR) {
- ANGLE_DIR = $$PWD/../../3rdparty/angle
+ ANGLE_DIR = $$absolute_path(../../3rdparty/angle)
} else {
!build_pass:message("Using external ANGLE from $$ANGLE_DIR")
}
@@ -12,20 +12,19 @@ isEmpty(ANGLE_DIR) {
error("$$ANGLE_DIR does not contain ANGLE")
}
-win32 {
- GNUTOOLS_DIR=$$PWD/../../../../gnuwin32/bin
- exists($$GNUTOOLS_DIR/gperf.exe) {
- # Escape closing parens when expanding the variable, otherwise cmd confuses itself.
- GNUTOOLS = "(set PATH=$$replace(GNUTOOLS_DIR, [/\\\\], $${QMAKE_DIR_SEP});%PATH:)=^)%)"
+equals(QMAKE_HOST.os, Windows) {
+ gnutools.value = $$absolute_path(../../../../gnuwin32/bin)
+ exists($$gnutools.value/gperf.exe) {
+ gnutools.name = PATH
+ gnutools.CONFIG = prepend
}
}
defineReplace(addGnuPath) {
- unset(gnuPath)
gnuPath = $$1
- !isEmpty(gnuPath):!isEmpty(GNUTOOLS) {
- eval(gnuPath = $${GNUTOOLS} && $$gnuPath)
- silent: eval(gnuPath = @echo generating sources from ${QMAKE_FILE_IN} && $$val_escape($$gnuPath))
+ !isEmpty(gnuPath):!isEmpty(gnutools.name) {
+ qtAddToolEnv(gnuPath, gnutools)
+ silent: gnuPath = @echo generating sources from ${QMAKE_FILE_IN} && $$gnuPath
}
return($$gnuPath)
}