
installer.iss use now relative paths instead of absolute. the generated setup include all needed dll and python files.
13 lines
No EOL
282 B
PowerShell
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 |