summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-16 01:01:12 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-16 01:01:12 +0100
commit3ebaa488a4388a5039803e26a64fa7b8ff1669e9 (patch)
tree24d9268e0a6980cf1bb8cce06d93f88639d3bf2d /wscript
parent11d57d48b64c6e174cb94b0a63150e9b91dd7942 (diff)
Move configure()s down to the appropriate level.
Diffstat (limited to 'wscript')
-rw-r--r--wscript15
1 files changed, 3 insertions, 12 deletions
diff --git a/wscript b/wscript
index 98fa0f6f7..f10f225a2 100644
--- a/wscript
+++ b/wscript
@@ -14,9 +14,6 @@ def configure(conf):
conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_VERSION="%s"' % VERSION])
conf.env.DEBUG_HASH = conf.options.debug_hash
- if conf.options.debug_hash:
- conf.env.append_value('CXXFLAGS', '-DDEBUG_HASH')
- conf.check_cc(msg = 'Checking for library libmhash', function_name = 'mhash_init', header_name = 'mhash.h', lib = 'mhash', uselib_store = 'MHASH')
if conf.options.enable_debug:
conf.env.append_value('CXXFLAGS', '-g')
@@ -24,10 +21,6 @@ def configure(conf):
conf.env.append_value('CXXFLAGS', '-O3')
conf.env.DISABLE_GUI = conf.options.disable_gui
- if conf.options.disable_gui is False:
- conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
- conf.check_cfg(package = 'gtkmm-2.4', args = '--cflags --libs', uselib_store = 'GTKMM', mandatory = True)
- conf.check_cfg(package = 'cairomm-1.0', args = '--cflags --libs', uselib_store = 'CAIROMM', mandatory = True)
conf.check_cfg(package = 'sigc++-2.0', args = '--cflags --libs', uselib_store = 'SIGC++', mandatory = True)
conf.check_cfg(package = 'libavformat', args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = True)
@@ -65,11 +58,9 @@ def configure(conf):
#include <boost/filesystem.hpp>\n
int main() { boost::filesystem::copy_file ("a", "b"); }\n
""", msg = 'Checking for boost filesystem library', libpath = '/usr/local/lib', lib = ['boost_filesystem', 'boost_system'], uselib_store = 'BOOST_FILESYSTEM')
- conf.check_cxx(fragment = """
- #define BOOST_TEST_MODULE Config test\n
- #include <boost/test/unit_test.hpp>\n
- int main() {}
- """, msg = 'Checking for boost unit testing library', lib = 'boost_unit_test_framework', uselib_store = 'BOOST_TEST')
+
+ conf.recurse('src')
+ conf.recurse('test')
def build(bld):
bld.recurse('src')