Try to fix windows build.
authorCarl Hetherington <cth@carlh.net>
Thu, 11 Apr 2013 06:45:13 +0000 (07:45 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 11 Apr 2013 06:45:13 +0000 (07:45 +0100)
wscript

diff --git a/wscript b/wscript
index 09069bcd1d03496ec4b7bd478c677b17be40b6a8..8a5fb431ffdb73836667bd0041aaf9e10a679bb4 100644 (file)
--- a/wscript
+++ b/wscript
@@ -3,11 +3,19 @@ VERSION = '0.02pre'
 
 def options(opt):
     opt.load('compiler_cxx')
+    opt.add_option('--target-windows', action='store_true', default = False, help = 'set up to do a cross-compile to Windows')
 
 def configure(conf):
     conf.load('compiler_cxx')
     conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-O2'])
 
+    conf.env.TARGET_WINDOWS = conf.options.target_windows
+
+    if conf.options.target_windows:
+        boost_lib_suffix = '-mt'
+    else:
+        boost_lib_suffix = ''
+
     conf.check_cfg(package = 'libxml++-2.6', args = '--cflags --libs', uselib_store = 'LIBXML++', mandatory = True)
 
     conf.check_cxx(fragment = """
@@ -16,7 +24,7 @@ def configure(conf):
                   """,
                    msg = 'Checking for boost filesystem library',
                    libpath = '/usr/local/lib',
-                   lib = ['boost_filesystem', 'boost_system'],
+                   lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
                    uselib_store = 'BOOST_FILESYSTEM')
 
     conf.recurse('test')