summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript12
1 files changed, 6 insertions, 6 deletions
diff --git a/wscript b/wscript
index f7cdddf..2543c65 100644
--- a/wscript
+++ b/wscript
@@ -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: