This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Bungloo/Windows/deploy.ps1
dblugeon 8cd73ac378 update windows script build and setup.exe generation
installer.iss use now relative paths instead of absolute.
the generated setup include all needed dll and python files.
2013-07-03 18:15:37 +02:00

13 lines
No EOL
282 B
PowerShell

mkdir bungloo
Copy-Item ../Qt/* bungloo -Recurse
Copy-Item ../WebKit bungloo -Recurse
Copy-Item ../images bungloo -Recurse
Copy-Item setup.py bungloo
touch bungloo/__init__.py
Copy-Item msvcp90.dll bungloo
cd bungloo
python setup.py py2exe
cd ..
iscc.exe "installer.iss"
rm bungloo