X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fwscript;h=87a1ca7873bfc37697ac53a7a6f2b9dc67f6fdaa;hb=HEAD;hp=30240cd117efa62fd66cc82cbe52cdde59a6290f;hpb=af85c3bb844599895eda780083fb9466cdfc8e76;p=dcpomatic.git diff --git a/src/lib/wscript b/src/lib/wscript index 30240cd11..87a1ca787 100644 --- a/src/lib/wscript +++ b/src/lib/wscript @@ -48,9 +48,11 @@ sources = """ text_content.cc text_decoder.cc case_insensitive_sorter.cc - check_content_change_job.cc + check_content_job.cc cinema.cc cinema_sound_processor.cc + change_signaller.cc + collator.cc colour_conversion.cc config.cc content.cc @@ -58,8 +60,8 @@ sources = """ combine_dcp_job.cc copy_dcp_details_to_film.cc create_cli.cc + crop.cc cross_common.cc - crypto.cc curl_uploader.cc datasat_ap2x.cc dcp_content.cc @@ -84,7 +86,7 @@ sources = """ dkdm_recipient.cc dkdm_wrapper.cc dolby_cp750.cc - emailer.cc + email.cc empty.cc encoder.cc encode_server.cc @@ -95,9 +97,11 @@ sources = """ examine_content_job.cc examine_ffmpeg_subtitles_job.cc exceptions.cc + export_config.cc file_group.cc file_log.cc filter_graph.cc + find_missing.cc ffmpeg.cc ffmpeg_audio_stream.cc ffmpeg_content.cc @@ -110,9 +114,12 @@ sources = """ ffmpeg_subtitle_stream.cc ffmpeg_wrapper.cc film.cc + film_util.cc filter.cc font.cc - font_data.cc + font_config.cc + font_id_allocator.cc + font_id_map.cc frame_interval_checker.cc frame_rate_change.cc guess_crop.cc @@ -126,6 +133,7 @@ sources = """ image_jpeg.cc image_png.cc image_proxy.cc + image_store.cc j2k_image_proxy.cc job.cc job_manager.cc @@ -134,24 +142,29 @@ sources = """ kdm_cli.cc kdm_recipient.cc kdm_with_metadata.cc + kdm_util.cc log.cc log_entry.cc make_dcp.cc + map_cli.cc maths_util.cc memory_util.cc mid_side_decoder.cc + named_channel.cc overlaps.cc pixel_quanta.cc player.cc - player_text.cc player_video.cc playlist.cc position_image.cc ratio.cc raw_image_proxy.cc reel_writer.cc + referenced_reel_asset.cc + release_notes.cc render_text.cc resampler.cc + resolution.cc rgba.cc rng.cc scoped_temporary.cc @@ -171,13 +184,17 @@ sources = """ string_text_file_decoder.cc subtitle_analysis.cc subtitle_encoder.cc + territory_type.cc text_ring_buffers.cc + text_type.cc timer.cc transcode_job.cc trusted_device.cc types.cc + rough_duration.cc signal_manager.cc stdout_log.cc + unzipper.cc update_checker.cc upload_job.cc uploader.cc @@ -189,9 +206,12 @@ sources = """ video_content.cc video_decoder.cc video_filter_graph.cc + video_filter_graph_set.cc + video_frame_type.cc video_mxf_content.cc video_mxf_decoder.cc video_mxf_examiner.cc + video_range.cc video_ring_buffers.cc writer.cc zipper.cc @@ -210,6 +230,7 @@ def build(bld): BOOST_FILESYSTEM BOOST_THREAD BOOST_DATETIME BOOST_SIGNALS2 BOOST_REGEX SAMPLERATE POSTPROC TIFF SSH DCP CXML GLIB LZMA XML++ CURL ZIP BZ2 FONTCONFIG PANGOMM CAIROMM XMLSEC SUB ICU NETTLE PNG JPEG LEQM_NRT + LIBZ """ if bld.env.TARGET_OSX: @@ -218,7 +239,7 @@ def build(bld): obj.source = sources + ' version.cc' if bld.env.ENABLE_DISK: - obj.source += ' copy_to_drive_job.cc ext.cc nanomsg.cc' + obj.source += ' copy_to_drive_job.cc disk_writer_messages.cc ext.cc nanomsg.cc' obj.uselib += ' LWEXT4 NANOMSG' if bld.env.TARGET_LINUX: obj.uselib += ' POLKIT' @@ -227,9 +248,9 @@ def build(bld): obj.uselib += ' WINSOCK2 DBGHELP SHLWAPI MSWSOCK BOOST_LOCALE SETUPAPI OLE32 UUID' obj.source += ' cross_windows.cc' if bld.env.TARGET_OSX: - obj.source += ' cross_osx.cc' + obj.source += ' cross_osx.cc cross_unix.cc' if bld.env.TARGET_LINUX: - obj.source += ' cross_linux.cc' + obj.source += ' cross_linux.cc cross_unix.cc' if bld.env.STATIC_DCPOMATIC: obj.uselib += ' XMLPP'