Compare commits

...

2 Commits

Author SHA1 Message Date
xhacker-zzz 020fafcbd2 update readme 2023-01-21 01:34:48 +08:00
xhacker-zzz 3bf6e68439 add build script for Windows 2023-01-21 01:33:13 +08:00
2 changed files with 44 additions and 1 deletions

View File

@ -25,7 +25,10 @@ const decrypted= (await DecryptKgmWasm(cipherText, extension)).data;
### 自行构建
在 Linux 环境下执行 `./build-wasm` 即可构建。构建结果将位于此项目根目录的npm子目录中。
#### Linux
在此项目根目录中执行 `./build-wasm` 即可构建。构建结果将位于此项目根目录的npm子目录中。
#### Windows
在此项目根目录中执行 `build-wasm.cmd` 即可构建。构建结果将位于此项目根目录的npm子目录中。
[音乐解锁Web]: https://git.unlock-music.dev/um/web
[音乐解锁]: https://unlock-music.dev/

40
build-wasm.cmd Normal file
View File

@ -0,0 +1,40 @@
@echo off
setlocal
set "CURR_DIR=%CD%"
set "BUILD_TYPE=%1"
if "%BUILD_TYPE%"=="" set "BUILD_TYPE=Release"
md build\wasm 2>nul
if not exist build\emsdk (
git clone https://github.com/emscripten-core/emsdk.git build\emsdk
)
pushd build\emsdk
rem git pull
call emsdk.bat install 3.0.0
call emsdk.bat activate 3.0.0
call emsdk_env.bat
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=KgmLegacy.js KgmWasm.js KgmWasm.wasm KgmWasmBundle.js %CURR_DIR%\LICENSE.txt"
for %%f in (%TARGET_FILES%) do (
copy "%%f" "%CURR_DIR%\npm"
)
popd
endlocal