mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-25 23:49:35 -05:00
Fix MSys2 Windows Compilation after #f1847a9 commit.
As used by AppVeyor.
This commit is contained in:
parent
3640e32974
commit
3200ea57b2
@ -47,7 +47,19 @@ win32 {
|
||||
}
|
||||
|
||||
# Check for msys2
|
||||
PREFIX_MSYS2 = $$(MINGW_PREFIX)
|
||||
isEmpty(MINGW_PREFIX) {
|
||||
exists(C:/msys32/mingw32/include) {
|
||||
message(MINGW_PREFIX is empty. Set it in your environment variables.)
|
||||
message(Found it here:C:\msys32\mingw32)
|
||||
MINGW_PREFIX = "C:\msys32\mingw32"
|
||||
}
|
||||
exists(C:/msys64/mingw32/include) {
|
||||
message(MINGW_PREFIX is empty. Set it in your environment variables.)
|
||||
message(Found it here:C:\msys64\mingw32)
|
||||
MINGW_PREFIX = "C:\msys64\mingw32"
|
||||
}
|
||||
}
|
||||
PREFIX_MSYS2 = $${MINGW_PREFIX}
|
||||
!isEmpty(PREFIX_MSYS2) {
|
||||
message(msys2 is installed.)
|
||||
BIN_DIR += "$${PREFIX_MSYS2}/bin"
|
||||
|
Loading…
Reference in New Issue
Block a user