enable post build script for qt launcher

This commit is contained in:
dante ruiz 2019-09-04 09:13:22 -07:00
parent 058343fecc
commit 4c5de120b7

View file

@ -149,7 +149,7 @@ def signBuild(executablePath):
def zipDarwinLauncher(): def zipDarwinLauncher():
launcherSourcePath = os.path.join(SOURCE_PATH, 'launchers', sys.platform) launcherSourcePath = os.path.join(SOURCE_PATH, 'launchers', 'qt')
launcherBuildPath = os.path.join(BUILD_PATH, 'launcher') launcherBuildPath = os.path.join(BUILD_PATH, 'launcher')
archiveName = computeArchiveName('HQ Launcher') archiveName = computeArchiveName('HQ Launcher')
@ -170,7 +170,7 @@ def zipDarwinLauncher():
def buildLightLauncher(): def buildLightLauncher():
launcherSourcePath = os.path.join(SOURCE_PATH, 'launchers', sys.platform) launcherSourcePath = os.path.join(SOURCE_PATH, 'launchers', 'qt')
launcherBuildPath = os.path.join(BUILD_PATH, 'launcher') launcherBuildPath = os.path.join(BUILD_PATH, 'launcher')
if not os.path.exists(launcherBuildPath): if not os.path.exists(launcherBuildPath):
os.makedirs(launcherBuildPath) os.makedirs(launcherBuildPath)