X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fwscript;h=87a1ca7873bfc37697ac53a7a6f2b9dc67f6fdaa;hb=HEAD;hp=6515ebf9fa4926a2beb65b01af27cf5909ec0e5f;hpb=8d998d5e325e06fdb0075483048cd56dca03273f;p=dcpomatic.git diff --git a/src/lib/wscript b/src/lib/wscript index 6515ebf9f..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,16 +60,16 @@ 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.cc dcp_content.cc dcp_content_type.cc dcp_decoder.cc dcp_encoder.cc dcp_examiner.cc + dcp_digest_file.cc dcp_subtitle.cc dcp_subtitle_content.cc dcp_subtitle_decoder.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,11 +114,15 @@ 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 hints.cc internet.cc image.cc @@ -122,7 +130,10 @@ sources = """ image_decoder.cc image_examiner.cc image_filename_sorter.cc + image_jpeg.cc + image_png.cc image_proxy.cc + image_store.cc j2k_image_proxy.cc job.cc job_manager.cc @@ -131,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 @@ -168,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 @@ -186,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 @@ -206,7 +229,8 @@ def build(bld): AVCODEC AVUTIL AVFORMAT AVFILTER SWSCALE 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 LEQM_NRT + CURL ZIP BZ2 FONTCONFIG PANGOMM CAIROMM XMLSEC SUB ICU NETTLE PNG JPEG LEQM_NRT + LIBZ """ if bld.env.TARGET_OSX: @@ -215,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' @@ -224,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'