Use Qt5.10.x instead of Qt5.9.x.

This refs #4 and #22.
This commit is contained in:
Kazunari Sekigawa 2018-03-19 10:06:38 +09:00
parent 1890902dd8
commit 3384310676
1 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ def SetGlobals():
Usage += " <-c|--clean> : clean the work directory | disabled \n" Usage += " <-c|--clean> : clean the work directory | disabled \n"
Usage += " <-m|--make> : make a compressed DMG file | disabled \n" Usage += " <-m|--make> : make a compressed DMG file | disabled \n"
Usage += " : <-c|--clean> and <-m|--make> are mutually exclusive | \n" Usage += " : <-c|--clean> and <-m|--make> are mutually exclusive | \n"
Usage += " [-q|--qt <ID>] : ID name of deployed Qt | Qt593mp \n" Usage += " [-q|--qt <ID>] : ID name of deployed Qt | Qt510Xmp \n"
Usage += " [-s|--serial <num>] : DMG serial number | 1 \n" Usage += " [-s|--serial <num>] : DMG serial number | 1 \n"
Usage += " [-?|--?] : print this usage and exit | disabled \n" Usage += " [-?|--?] : print this usage and exit | disabled \n"
Usage += "--------------------------------------------------------------------------------------------------------\n" Usage += "--------------------------------------------------------------------------------------------------------\n"
@ -117,7 +117,7 @@ def SetGlobals():
OpClean = False OpClean = False
OpMake = False OpMake = False
DMGSerialNum = 1 DMGSerialNum = 1
QtIdentification = "Qt593mp" QtIdentification = "Qt510Xmp"
Version = GetKLayoutVersionFrom( "./version.sh" ) Version = GetKLayoutVersionFrom( "./version.sh" )
OccupiedDS = -1 OccupiedDS = -1
BackgroundPNG = "KLayoutDMG-Back.png" BackgroundPNG = "KLayoutDMG-Back.png"
@ -237,7 +237,7 @@ def ParseCommandLineArguments():
p.set_defaults( pkg_dir = "", p.set_defaults( pkg_dir = "",
operation_clean = False, operation_clean = False,
operation_make = False, operation_make = False,
qt_identification = "Qt593mp", qt_identification = "Qt510Xmp",
dmg_serial = "1", dmg_serial = "1",
checkusage = False ) checkusage = False )