-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathbuild-windows
More file actions
executable file
·27 lines (24 loc) · 794 Bytes
/
Copy pathbuild-windows
File metadata and controls
executable file
·27 lines (24 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh -e
# This script builds and packages the Windows version,
# It should be run in a Cygwin bash shell (under MS Windows, obviously).
mkdir -p packages
cd windows
sh ./build-intel-lib.sh 32
rm -rf IntelRDFPMathLib20U1
sh ./build-intel-lib.sh 64
cmd /c build-all.bat
cd ..
rm -rf Free42Windows-32bit
mkdir Free42Windows-32bit
cp windows/README.txt Free42Windows-32bit
mv windows/32/Free42Binary.exe Free42Windows-32bit
mv windows/32/Free42Decimal.exe Free42Windows-32bit
rmdir windows/32
zip -r packages/Free42Windows-32bit.zip Free42Windows-32bit
rm -rf Free42Windows-32bit
mkdir Free42Windows
cp windows/README.txt Free42Windows
mv windows/Free42Binary.exe Free42Windows
mv windows/Free42Decimal.exe Free42Windows
zip -r packages/Free42Windows.zip Free42Windows
rm -rf Free42Windows