Merge branch 'master' into cmake

This commit is contained in:
xawotihs
2025-04-22 20:37:50 +02:00
275 changed files with 298456 additions and 54638 deletions
+3 -2
View File
@@ -29,6 +29,7 @@ def createStandardResFile(buildpath):
os.chdir("Res")
os.system(cmd)
os.chdir("..")
#print("Creating Windows Package File")
print "Creating Windows Package File"
filename = 'Wagic-windows.zip'
createWindowsZipFile( filename, buildpath )
@@ -50,10 +51,10 @@ class ZipUtilities:
if file != '.svn':
full_path = os.path.join(folder, file)
if os.path.isfile(full_path):
print 'File added: ' + str(full_path)
#print('File added: ' + str(full_path))
zip_file.write(full_path)
elif os.path.isdir(full_path):
print 'Entering folder: ' + str(full_path)
#print('Entering folder: ' + str(full_path))
self.addFolderToZip(zip_file, full_path)