Runs.
[dcpomatic.git] / src / lib / wscript
index ee89ad0856525ba4d07ed32886df4138efc66048..5510d48a8a577d6529a620341df4d22c5cc5c4f7 100644 (file)
@@ -1,12 +1,17 @@
 import os
+import i18n
 
 sources = """
           ab_transcode_job.cc
          ab_transcoder.cc
+          analyse_audio_job.cc
+          audio_analysis.cc
+          audio_content.cc
           audio_decoder.cc
           audio_source.cc
           config.cc
           combiner.cc
+          content.cc
           cross.cc
           dci_metadata.cc
           dcp_content_type.cc
@@ -17,26 +22,30 @@ sources = """
           dolby_cp750.cc
           encoder.cc
           examine_content_job.cc
-          external_audio_decoder.cc
+          exceptions.cc
           filter_graph.cc
           ffmpeg_compatibility.cc
+          ffmpeg_content.cc
           ffmpeg_decoder.cc
           film.cc
           filter.cc
           format.cc
           gain.cc
           image.cc
+          imagemagick_content.cc
           imagemagick_decoder.cc
           job.cc
           job_manager.cc
           log.cc
           lut.cc
           matcher.cc
+          playlist.cc
           scp_dcp_job.cc
           scaler.cc
           server.cc
+          sndfile_content.cc
+          sndfile_decoder.cc
           sound_processor.cc
-          stream.cc
           subtitle.cc
           timer.cc
           transcode_job.cc
@@ -44,6 +53,7 @@ sources = """
           ui_signaller.cc
           util.cc
           version.cc
+          video_content.cc
           video_decoder.cc
           video_source.cc
           writer.cc
@@ -67,11 +77,10 @@ def build(bld):
     obj.source = sources
     obj.target = 'dvdomatic'
 
+    i18n.po_to_mo(os.path.join('src', 'lib'), 'libdvdomatic', bld)
+
 def pot(bld):
-    s = ""
-    for f in sources.split('\n'):
-        t = f.strip()
-        if len(t) > 0:
-            s += (os.path.join('src', 'lib', t)) + " "
+    i18n.pot(os.path.join('src', 'lib'), sources, 'libdvdomatic')
 
-    os.system('xgettext -d libdvdomatic -s --keyword=_ -p build/src/lib -o libdvdomatic.pot %s' % s)
+def pot_merge(bld):
+    i18n.pot_merge(os.path.join('src', 'lib'), 'libdvdomatic')