We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fbc1ea commit 068bc05Copy full SHA for 068bc05
1 file changed
compile.ps1
@@ -4,7 +4,7 @@ FUNCTION BUILD {
4
[PARAMETER(Mandatory=$TRUE, Position=1, HelpMessage="Arch type")] [STRING]$ARCH
5
)
6
7
- $OUTPATH = "bin/chdad-$OS-$ARCH"
+ $OUTPATH = "bin/$PROJECT_NAME-$OS-$ARCH"
8
IF ($OS -EQ "windows") {
9
$OUTPATH = "$OUTPATH.exe"
10
}
@@ -16,5 +16,7 @@ FUNCTION BUILD {
16
17
18
19
+$PROJECT_NAME = "chdad"
20
+
21
BUILD "windows" "386"
22
BUILD "windows" "amd64"
0 commit comments