fixed: ServiceManagement not available in 10.5

This commit is contained in:
Nick Bolton 2014-03-23 12:16:11 +00:00
parent 5ff37a0937
commit 3e5194dd4e
2 changed files with 11 additions and 4 deletions

View file

@ -505,6 +505,16 @@ class InternalCommands:
# 10.4: universal (intel and power pc)
qmake_cmd_string += ' CONFIG+="ppc i386"'
libs = (
"-framework ApplicationServices "
"-framework Security "
"-framework cocoa")
if major == 10 and minor >= 6:
libs += " -framework ServiceManagement"
qmake_cmd_string += " \"MACX_LIBS=%s\" " % libs
sdkDir = self.getMacSdkDir()
shortForm = "macosx" + self.macSdk
version = str(major) + "." + str(minor)