Skip to content

Commit 05b5a36

Browse files
committed
split build scripts
1 parent bcc863e commit 05b5a36

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Write-Output ("当前工作目录是:" + $CurrentLocation)
66

77
# 构建主要目标
88

9-
cmake --build "build/x86" --target LuaSTG --config Release --clean-first
9+
#cmake --build "build/x86" --target LuaSTG --config Release --clean-first
1010
cmake --build "build/amd64" --target LuaSTG --config Release --clean-first
1111

1212
# 复原

scripts/build.x86.ps1

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# 配置工作目录
2+
3+
Set-Location -Path ($PSScriptRoot + "/..")
4+
$CurrentLocation = Get-Location
5+
Write-Output ("当前工作目录是:" + $CurrentLocation)
6+
7+
# 构建主要目标
8+
9+
cmake --build "build/x86" --target LuaSTG --config Release --clean-first
10+
#cmake --build "build/amd64" --target LuaSTG --config Release --clean-first
11+
12+
# 复原
13+
14+
Set-Location $PSScriptRoot

0 commit comments

Comments
 (0)