9
9
linux_x86 = " --cpu:i386 --os:linux"
10
10
linux_x64 = " --cpu:amd64 --os:linux"
11
11
linux_arm = " --cpu:arm --os:linux"
12
- windows_x86 = " --cpu:i386 --os:windows"
13
12
windows_x64 = " --cpu:amd64 --os:windows"
14
13
macosx_x64 = " "
15
14
parallel = " --parallelBuild:1 --verbosity:3"
20
19
proc filename_for (os: string , arch: string ): string =
21
20
return " hastyscribe" & " _v" & version & " _" & os & " _" & arch & " .zip"
22
21
23
- task " windows-x86-build" , " Build HastyScribe for Windows (x86)" :
24
- direshell compile, windows_x86, hs_file
25
-
26
22
task " windows-x64-build" , " Build HastyScribe for Windows (x64)" :
27
23
direshell compile, windows_x64, hs_file
28
24
@@ -39,10 +35,6 @@ task "macosx-x64-build", "Build HastyScribe for Mac OS X (x64)":
39
35
direshell compile, macosx_x64, hs_file
40
36
41
37
task " release" , " Release HastyScribe" :
42
- echo " \n\n\n WINDOWS - x86:\n\n "
43
- runTask " windows-x86-build"
44
- direshell zip, filename_for (" windows" , " x86" ), hs & " .exe"
45
- direshell " rm" , hs & " .exe"
46
38
echo " \n\n\n WINDOWS - x64:\n\n "
47
39
runTask " windows-x64-build"
48
40
direshell zip, filename_for (" windows" , " x64" ), hs & " .exe"
0 commit comments