Added PowerShell build script

This commit is contained in:
Bartek Kryza
2023-02-07 17:29:01 +01:00
parent 8b70bba0c0
commit 7112c160f5

4
build.ps1 Normal file
View File

@@ -0,0 +1,4 @@
param ($Prefix="C:\clang-uml", $BuildType="Release")
cmake -S . -B .\_build\$BuildType -DCMAKE_PREFIX_PATH="$Prefix" -Thost=x64
cmake --build .\_build\$BuildType --config $BuildType