Add -x32/-x64 suffix to boost libraries when building for Windows.
[libdcp.git] / test / wscript
index 29b3e487a76dfbd365b1e1a36e481aa6096e50bf..62d258bf016d9457ea0ce8797910b5be455e93e7 100644 (file)
 #
 
 def configure(conf):
-    if conf.options.target_windows:
-        boost_lib_suffix = '-mt'
+    if conf.options.target_windows_64:
+        boost_lib_suffix = '-mt-x64'
+    elif conf.options.target_windows_32:
+        boost_lib_suffix = '-mt-x32'
     else:
         boost_lib_suffix = ''