X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fwscript;h=b7d91cb0dd7a61aacbffa45350d0bd8bbcdf7823;hb=a23d106d15259440ba66c15f1dca4b6ba30c075e;hp=8e9b2a7515cfa278319c51e1adddc36f701eb9be;hpb=9f90ec8acaa88ab4011fdf4273941210a52a3090;p=libsub.git diff --git a/test/wscript b/test/wscript index 8e9b2a7..b7d91cb 100644 --- a/test/wscript +++ b/test/wscript @@ -1,4 +1,5 @@ def configure(conf): + boost_lib_suffix = '' if conf.env.TARGET_WINDOWS: boost_lib_suffix = '-mt' @@ -16,18 +17,20 @@ def configure(conf): def build(bld): obj = bld(features='cxx cxxprogram') obj.name = 'tests' - obj.uselib = 'BOOST_TEST CXML' - obj.use = 'libsub' + obj.uselib = 'BOOST_TEST BOOST_REGEX BOOST_FILESYSTEM DCP CXML ASDCPLIB_CTH' + obj.use = 'libsub-1.0' obj.source = """ dcp_reader_test.cc dcp_to_stl_binary_test.cc iso6937_test.cc + ssa_reader_test.cc stl_binary_reader_test.cc stl_binary_writer_test.cc stl_text_reader_test.cc subrip_reader_test.cc time_test.cc test.cc + vertical_position_test.cc """ obj.target = 'tests' obj.install_path = ''