From 7112c160f5837ffc721d503ab2ff9665bf03fcad Mon Sep 17 00:00:00 2001 From: Bartek Kryza Date: Tue, 7 Feb 2023 17:29:01 +0100 Subject: [PATCH] Added PowerShell build script --- build.ps1 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 build.ps1 diff --git a/build.ps1 b/build.ps1 new file mode 100644 index 00000000..671b0584 --- /dev/null +++ b/build.ps1 @@ -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 \ No newline at end of file