aboutsummaryrefslogtreecommitdiff
path: root/script/build.ps1
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2018-10-23 21:59:40 +0800
committercrupest <crupest@outlook.com>2018-10-23 21:59:40 +0800
commit70791b328129d5f682c1b2b3478eaa1baeb37ec5 (patch)
treed84bfbe42e30912939eda70364dcd67938b78815 /script/build.ps1
parent3603cb76318b95877f29c00d571ce4431d858e5c (diff)
parent24df89fcccfb97ea98cba613dd8fbce6c87b7840 (diff)
downloadcru-70791b328129d5f682c1b2b3478eaa1baeb37ec5.tar.gz
cru-70791b328129d5f682c1b2b3478eaa1baeb37ec5.tar.bz2
cru-70791b328129d5f682c1b2b3478eaa1baeb37ec5.zip
Merge branch 'master' into 3-cursor
Diffstat (limited to 'script/build.ps1')
-rw-r--r--script/build.ps121
1 files changed, 0 insertions, 21 deletions
diff --git a/script/build.ps1 b/script/build.ps1
deleted file mode 100644
index 13f6831d..00000000
--- a/script/build.ps1
+++ /dev/null
@@ -1,21 +0,0 @@
-function CheckLastExitCode
-{
- if ($LASTEXITCODE -ne 0)
- {
- exit $LASTEXITCODE
- }
-}
-
-vcpkg.exe install folly:x64-windows fmt:x64-windows
-& CheckLastExitCode
-
-vcpkg.exe integrate install
-& CheckLastExitCode
-
-& "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe" CruUI.sln /target:Build /p:Platform=x64 /p:Configuration=Debug
-
-if ($LASTEXITCODE -ne 0)
-{
- & "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe" CruUI.sln /target:Rebuild /p:Platform=x64 /p:Configuration=Debug
- & CheckLastExitCode
-}