mirror of
https://github.com/xhacker-zzz/QmcWasm.git
synced 2024-11-25 04:22:16 +00:00
fix build script for Windows
This commit is contained in:
parent
976b70943a
commit
8a876af839
@ -11,6 +11,18 @@ if not exist build\emsdk (
|
||||
git clone https://github.com/emscripten-core/emsdk.git build\emsdk
|
||||
)
|
||||
|
||||
rem Check for Ninja binary
|
||||
pushd build\wasm
|
||||
if not exist "ninja.exe" (
|
||||
rem Install Ninja
|
||||
curl -L https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip -o ninja.zip
|
||||
tar -xzvf ninja.zip
|
||||
del ninja.zip
|
||||
)
|
||||
rem must setup PATH for ninja first to avoid conflict with emsdk_env.bat
|
||||
set PATH="%PATH%;%cd%"
|
||||
popd
|
||||
|
||||
pushd build\emsdk
|
||||
rem git pull
|
||||
call emsdk.bat install 3.0.0
|
||||
@ -21,13 +33,6 @@ popd
|
||||
pushd build\wasm
|
||||
|
||||
call emcmake cmake -DCMAKE_BUILD_TYPE=%BUILD_TYPE% ..\..
|
||||
rem Check if Ninja binary exists
|
||||
if not exist "ninja.exe" (
|
||||
rem Install Ninja
|
||||
curl -L https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip -o ninja.zip
|
||||
unzip ninja.zip
|
||||
del ninja.zip
|
||||
)
|
||||
ninja.exe -f build.ninja -j 3
|
||||
|
||||
set "TARGET_FILES=QmcLegacy.js QmcWasm.js QmcWasm.wasm QmcWasmBundle.js %CURR_DIR%\LICENSE.txt"
|
||||
|
Loading…
Reference in New Issue
Block a user