There was an error while loading. Please reload this page.
1 parent 9938afd commit 9196c56Copy full SHA for 9196c56
1 file changed
configure.ps1
@@ -3,6 +3,11 @@ param (
3
[String]$release = "Debug"
4
)
5
6
+if ((${release} -ne "Release") -and (${release} -ne "Debug")) {
7
+ Write-Host "[x] Build mode must be Release or Debug"
8
+ Exit
9
+}
10
+
11
# Create build directory if it doesn't exist
12
if (-not (Test-Path -Path "build")) {
13
New-Item -ItemType Directory -Path "build"
0 commit comments