Enable mac launcher builds

This commit is contained in:
Brad Davis 2019-06-05 12:51:19 -07:00
parent f3c17e1598
commit 0bc0c73ef2

View file

@ -112,6 +112,9 @@ def fixupWinZip(filename):
shutil.move(outFullPath, fullPath)
def buildLightLauncher():
# FIXME remove once MFC is enabled on the windows build hosts
if sys.platform == 'win32':
return
launcherSourcePath = os.path.join(SOURCE_PATH, 'launchers', sys.platform)
launcherBuildPath = os.path.join(BUILD_PATH, 'launcher')
if not os.path.exists(launcherBuildPath):
@ -170,5 +173,4 @@ if sys.platform == "win32":
elif sys.platform == "darwin":
fixupMacZip(archiveName)
# FIXME enable when MFC is on the Windows build hosts
# buildLightLauncher()
buildLightLauncher()