diff options
Diffstat (limited to 'test/wscript')
| -rw-r--r-- | test/wscript | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/wscript b/test/wscript index ff6895d9a..d039e083e 100644 --- a/test/wscript +++ b/test/wscript @@ -40,6 +40,8 @@ def build(bld): obj.uselib += 'WINSOCK2 DBGHELP SHLWAPI MSWSOCK BOOST_LOCALE ' if bld.env.TARGET_LINUX: obj.uselib += 'DL ' + if bld.env.ENABLE_FASTVIDEO: + obj.uselib += ' FASTVIDEO' obj.use = 'libdcpomatic2' obj.source = """ 4k_test.cc @@ -53,6 +55,7 @@ def build(bld): audio_processor_test.cc audio_processor_delay_test.cc audio_ring_buffers_test.cc + barrier_test.cc butler_test.cc cinema_sound_processor_test.cc client_server_test.cc @@ -152,6 +155,9 @@ def build(bld): obj.source += " disk_writer_test.cc" obj.uselib += "LWEXT4 NANOMSG " + if bld.env.ENABLE_FASTVIDEO: + obj.source += " fastvideo_test.cc" + # Some difference in font rendering between the test machine and others... # burnt_subtitle_test.cc # This one doesn't check anything |
