mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
overlay: fall back to fxc.exe on PATH if DXSDK is not set.
This allows the overlay to build with the Windows SDK version of fxc.exe. This removes the need for people developing locally to install the legacy DirectX SDK.
This commit is contained in:
parent
012cde52d5
commit
d9cc484a3e
@ -50,7 +50,11 @@ CONFIG(debug, debug|release) {
|
||||
|
||||
# Override fxc binary for the x86 build.
|
||||
CONFIG(force-x86-toolchain) {
|
||||
FXC = "\"$$(DXSDK_DIR)\\Utilities\\bin\\x86\\fxc.exe\""
|
||||
exists($$DXSDK_DIR) {
|
||||
FXC = "\"$$(DXSDK_DIR)\\Utilities\\bin\\x86\\fxc.exe\""
|
||||
} else {
|
||||
FXC = fxc.exe
|
||||
}
|
||||
} else {
|
||||
FXC = fxc.exe
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user