mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-08-27 04:37:41 +00:00
Remove checked-in jom.exe binary
This commit is contained in:
@@ -50,6 +50,7 @@ jobs:
|
|||||||
cache: true
|
cache: true
|
||||||
set-env: ${{ runner.os != 'Windows' }}
|
set-env: ${{ runner.os != 'Windows' }}
|
||||||
add-tools-to-path: ${{ runner.os != 'Windows' }}
|
add-tools-to-path: ${{ runner.os != 'Windows' }}
|
||||||
|
tools: ${{ runner.os == 'Windows' && 'tools_qtcreator_gui' || '' }}
|
||||||
version: ${{ matrix.qt_version }}
|
version: ${{ matrix.qt_version }}
|
||||||
aqtsource: 'git+https://github.com/miurahr/aqtinstall.git@073e34d7c2ab4ae6961ed7cca690b3abd5ba5a7e'
|
aqtsource: 'git+https://github.com/miurahr/aqtinstall.git@073e34d7c2ab4ae6961ed7cca690b3abd5ba5a7e'
|
||||||
|
|
||||||
|
|||||||
+22
-1
@@ -165,9 +165,30 @@ pushd %BUILD_FOLDER%
|
|||||||
if !ERRORLEVEL! NEQ 0 goto Error
|
if !ERRORLEVEL! NEQ 0 goto Error
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
rem Locate jom.exe or fall back to nmake.exe
|
||||||
|
where /q jom.exe
|
||||||
|
if !ERRORLEVEL! EQU 0 (
|
||||||
|
set JOM_CMD=jom.exe
|
||||||
|
) else if exist "%QT_PATH%\..\..\..\Tools\QtCreator\bin\jom\jom.exe" (
|
||||||
|
set JOM_CMD="%QT_PATH%\..\..\..\Tools\QtCreator\bin\jom\jom.exe"
|
||||||
|
) else if exist "%QT_PATH%\..\..\..\Tools\QtCreator\bin\jom.exe" (
|
||||||
|
set JOM_CMD="%QT_PATH%\..\..\..\Tools\QtCreator\bin\jom.exe"
|
||||||
|
) else if exist "%QT_PATH%\..\..\..\Tools\jom\jom.exe" (
|
||||||
|
set JOM_CMD="%QT_PATH%\..\..\..\Tools\jom\jom.exe"
|
||||||
|
) else (
|
||||||
|
where /q nmake.exe
|
||||||
|
if !ERRORLEVEL! EQU 0 (
|
||||||
|
echo jom.exe not found. Falling back to nmake.exe.
|
||||||
|
set JOM_CMD=nmake.exe
|
||||||
|
) else (
|
||||||
|
echo Unable to find jom.exe or nmake.exe!
|
||||||
|
goto Error
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
echo Compiling Moonlight in %BUILD_CONFIG% configuration
|
echo Compiling Moonlight in %BUILD_CONFIG% configuration
|
||||||
pushd %BUILD_FOLDER%
|
pushd %BUILD_FOLDER%
|
||||||
%SOURCE_ROOT%\scripts\jom.exe %BUILD_CONFIG%
|
!JOM_CMD! %BUILD_CONFIG%
|
||||||
if !ERRORLEVEL! NEQ 0 goto Error
|
if !ERRORLEVEL! NEQ 0 goto Error
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user