diff options
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -4,7 +4,7 @@ from waflib import Build, Logs, Options, TaskGen from waflib.extras import autowaf # Semver package/library version -SUIL_VERSION = '0.10.12' +SUIL_VERSION = '0.10.13' SUIL_MAJOR_VERSION = SUIL_VERSION[0:SUIL_VERSION.find('.')] # Mandatory waf variables @@ -154,11 +154,11 @@ def configure(conf): system=True, mandatory=False) - if not conf.options.no_cocoa: - if conf.check_cxx(header_name = 'QMacCocoaViewContainer', - uselib = 'QT5_COCOA', + if conf.env.DEST_OS == 'darwin' and not conf.options.no_cocoa: + if conf.check_cxx(header_name='QMacCocoaViewContainer', + uselib='QT5', system=True, - mandatory = False): + mandatory=False): enable_module('SUIL_WITH_COCOA_IN_QT5') conf.check_cc(define_name = 'HAVE_LIBDL', @@ -389,7 +389,7 @@ def build(bld): install_path = module_dir, cflags = cflags, lib = modlib, - uselib = 'QT5 QT5_COCOA LV2', + uselib = 'QT5 LV2', linkflags = ['-framework', 'Cocoa']) if bld.env.SUIL_WITH_X11: |