Mercurial Hosting > editor
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scripts/windows/build.sh Wed Jun 18 18:57:34 2025 -0600 @@ -0,0 +1,21 @@ +#!/bin/bash +set -e + +# assume that regular build.sh has been run + +cd "$(dirname $0)/../../build" + +rm -rf windows +mkdir windows + +cp ../scripts/windows/launcher.vbs windows +cp ../scripts/windows/installer.iss windows +cp -r luan_editor/jars windows +cp -r luan_editor/dictionaries windows + +cd windows +ISCC installer.iss + +cp LuanEditorInstaller.exe ../../website/src/download + +echo "finished windows build"