Fixed windows package and but in SDL frontend

This commit is contained in:
xawotihs
2016-06-25 11:50:07 +02:00
parent 10d9d84f84
commit 1f87ed77e4
2 changed files with 16 additions and 28 deletions
+4 -5
View File
@@ -7,11 +7,10 @@ from optparse import OptionParser
def createWindowsZipFile(filename, buildpath):
utilities = ZipUtilities()
zip_file = zipfile.ZipFile(filename, 'w', zipfile.ZIP_STORED)
zip_file.write('../../../LICENSE')
zip_file.write('libpng13.dll')
zip_file.write(buildpath + '/lib/Release/SDL2.dll')
zip_file.write(buildpath + '/lib/Release/zlib.dll')
zip_file.write(buildpath + '/bin/Release/Wagic.exe')
zip_file.write(buildpath + '/../LICENSE')
zip_file.write(buildpath + '/lib/Release/SDL2.dll', 'SDL2.dll')
zip_file.write(buildpath + '/lib/Release/zlib.dll', 'zlib.dll')
zip_file.write(buildpath + '/bin/Release/wagic.exe', 'wagic.exe')
zip_file.write('Res/' + getFilename('core') + '.zip')
zip_file.close()