Mercurial Hosting > editor
annotate scripts/windows/build.sh @ 75:7f5b3824f4d4
add Windows
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 18 Jun 2025 18:57:34 -0600 |
parents | |
children |
rev | line source |
---|---|
75 | 1 #!/bin/bash |
2 set -e | |
3 | |
4 # assume that regular build.sh has been run | |
5 | |
6 cd "$(dirname $0)/../../build" | |
7 | |
8 rm -rf windows | |
9 mkdir windows | |
10 | |
11 cp ../scripts/windows/launcher.vbs windows | |
12 cp ../scripts/windows/installer.iss windows | |
13 cp -r luan_editor/jars windows | |
14 cp -r luan_editor/dictionaries windows | |
15 | |
16 cd windows | |
17 ISCC installer.iss | |
18 | |
19 cp LuanEditorInstaller.exe ../../website/src/download | |
20 | |
21 echo "finished windows build" |