mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-19 09:27:37 +02:00
fixed: ServiceManagement not available in 10.5
This commit is contained in:
parent
5ff37a0937
commit
3e5194dd4e
2 changed files with 11 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue