Skip to content

Commit

Permalink
Fix win32-clang-g++ build
Browse files Browse the repository at this point in the history
Change-Id: Ide803de12736d545807a4ae650ff8f8bce5dccd8
Reviewed-by: Friedemann Kleint <[email protected]>
Reviewed-by: Joerg Bornemann <[email protected]>
  • Loading branch information
wangwenx190 committed Mar 13, 2019
1 parent 0f5ed78 commit 16b7afc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion configure.bat
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@ if "%PLATFORM%" == "" (
set PLATFORM=win32-msvc
) else if not "%clang-cl.exe%" == "" (
set PLATFORM=win32-clang-msvc
) else if not "%clang.exe%" == "" (
set PLATFORM=win32-clang-g++
) else if not "%g++.exe%" == "" (
set PLATFORM=win32-g++
) else (
Expand All @@ -172,7 +174,7 @@ if not exist "%QTSRC%\mkspecs\%PLATFORM%\qmake.conf" (
echo Host platform '%PLATFORM%' is invalid. Aborting. >&2
exit /b 1
)
if "%PLATFORM:win32-g++=%" == "%PLATFORM%" (
if "%PLATFORM:g++=%" == "%PLATFORM%" (
if "%MAKE%" == "" (
if not "%jom.exe%" == "" (
set MAKE=jom
Expand Down

0 comments on commit 16b7afc

Please sign in to comment.