axmol/tools/ci/genbindings.ps1

47 lines
1.1 KiB
PowerShell
Raw Normal View History

2023-09-26 10:32:53 +08:00
$myRoot = $PSScriptRoot
2023-09-26 09:50:25 +08:00
$llvm_ver = '15.0.7'
2023-09-26 10:32:53 +08:00
$AX_ROOT = (Resolve-Path $myRoot/../..).Path
2022-01-01 21:56:55 +08:00
# Store env path
$storedEnvPath = $env:Path
(Get-Command python.exe).Path
python -V
2023-02-14 23:30:44 +08:00
pip install PyYAML Cheetah3
2023-09-26 10:32:53 +08:00
## setup ndk
$setup_script = (Resolve-Path $AX_ROOT/setup.ps1).Path
2023-09-26 10:46:22 +08:00
Get-Command 'curl'
2023-09-26 10:32:53 +08:00
. $setup_script -p android
2023-09-26 10:46:22 +08:00
Get-Command 'curl'
2023-09-26 10:32:53 +08:00
echo "$ndk_root=$ndk_root"
$prefix = Join-Path $AX_ROOT 'tmp'
$llvm_out = Join-Path $prefix "llvmorg-$llvm_ver.zip"
2023-02-14 23:30:44 +08:00
## download win64 libclang.dll
2023-09-26 11:09:50 +08:00
$b1k.mkdirs($prefix)
2023-09-26 10:46:22 +08:00
download_and_expand -url "https://github.com/axmolengine/buildware/releases/download/llvmorg-$llvm_ver/llvmorg-$llvm_ver.zip" -out "$llvm_out" -dest $prefix
2023-09-26 10:32:53 +08:00
Copy-Item "$prefix/llvmorg-$llvm_ver/llvm/prebuilt/windows/x64/libclang.dll" -Destination "$AX_ROOT/tools/bindings-generator/libclang"
2023-06-12 10:26:08 +08:00
## ensure $env:AX_ROOT/core/axmolver.h exists
2023-09-26 10:32:53 +08:00
echo "AX_ROOT=$AX_ROOT"
if (!(Test-Path "$AX_ROOT/core/axmolver.h" -PathType Leaf)) {
Copy-Item "$AX_ROOT/core/axmolver.h.in" -Destination "$AX_ROOT/core/axmolver.h"
2023-06-12 10:26:08 +08:00
}
## run genbindings.py
2023-09-26 10:32:53 +08:00
Push-Location $AX_ROOT/tools/tolua
2023-02-14 23:30:44 +08:00
2022-08-09 09:48:03 +08:00
python genbindings.py --ndk_root "$ndk_root"
2022-01-01 21:56:55 +08:00
$env:Path = $storedEnvPath
2023-09-26 10:32:53 +08:00
Pop-Location