summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-18 18:08:58 +0000
committerDavid Robillard <d@drobilla.net>2010-12-18 18:08:58 +0000
commitecd46f4c6e6205f9ed372e717f8011a0303ee8c2 (patch)
tree611105c05d73225f33da75fb4eb13bfc51cedc4d /wscript
parent75e9533ebb6813cdfdfaad751708d3f07b0e1c48 (diff)
downloadraul-ecd46f4c6e6205f9ed372e717f8011a0303ee8c2.tar.gz
raul-ecd46f4c6e6205f9ed372e717f8011a0303ee8c2.tar.bz2
raul-ecd46f4c6e6205f9ed372e717f8011a0303ee8c2.zip
Add missing check for glibmm (fix ticket #617).
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2761 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/wscript b/wscript
index 9d37816..c1bb892 100644
--- a/wscript
+++ b/wscript
@@ -46,9 +46,11 @@ def configure(conf):
autowaf.display_header('Raul Configuration')
conf.check_tool('compiler_cxx')
autowaf.check_pkg(conf, 'glib-2.0', atleast_version='2.2',
- uselib_store='GLIB', mandatory=True)
+ uselib_store='GLIB', mandatory=True)
+ autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM',
+ atleast_version='2.14.0', mandatory=True)
autowaf.check_pkg(conf, 'gthread-2.0', atleast_version='2.14.0',
- uselib_store='GTHREAD', mandatory=True)
+ uselib_store='GTHREAD', mandatory=True)
conf.env['BUILD_TESTS'] = Options.options.build_tests