From 4e5da9f3c71cb2fd4059eab5785602cf524457be Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 22 Feb 2022 22:56:48 +0100 Subject: Add -x32/-x64 suffix to boost libraries when building for Windows. --- test/wscript | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test/wscript') diff --git a/test/wscript b/test/wscript index 29b3e487..62d258bf 100644 --- a/test/wscript +++ b/test/wscript @@ -32,8 +32,10 @@ # 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 = '' -- cgit v1.2.3