X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=graphics%2Fwscript;h=c879046835e03d74fccc0fbab0b76b11c7e8da14;hb=e73d30f567763acd4346e61d125b3c50ee1a2ef1;hp=23c3d56ea7827c1c624d7ce0cae605cb672f44f9;hpb=609c71720a5edd8f3fd57f007d28b4e7f559cb1e;p=dcpomatic.git diff --git a/graphics/wscript b/graphics/wscript index 23c3d56ea..c87904683 100644 --- a/graphics/wscript +++ b/graphics/wscript @@ -21,12 +21,30 @@ import os def build(bld): # Linux application icons - if bld.env.TARGET_LINUX: + if bld.env.TARGET_LINUX and not bld.env.DISABLE_GUI: for r in [16, 22, 32, 48, 64, 128, 256, 512]: - for p in ['dcpomatic2', 'dcpomatic2_kdm', 'dcpomatic2_server', 'dcpomatic2_batch', 'dcpomatic2_player']: + for p in [ + 'dcpomatic2', + 'dcpomatic2_kdm', + 'dcpomatic2_server', + 'dcpomatic2_batch', + 'dcpomatic2_player', + 'dcpomatic2_playlist', + 'dcpomatic2_disk', + 'dcpomatic2_combiner', + 'dcpomatic2_editor']: bld.install_files('${PREFIX}/share/icons/hicolor/%dx%d/apps' % (r, r), 'linux/%d/%s.png' % (r, p)) # Install stuff for POSIX systems - if not bld.env.TARGET_WINDOWS: + if not bld.env.TARGET_WINDOWS_64 and not bld.env.TARGET_WINDOWS_32 and not bld.env.DISABLE_GUI: bld.install_as('${PREFIX}/share/dcpomatic2/dcpomatic2_server_small.png', 'linux/16/dcpomatic2.png') bld.install_files('${PREFIX}/share/dcpomatic2', 'splash.png') + bld.install_files('${PREFIX}/share/dcpomatic2', 'zoom.png') + bld.install_files('${PREFIX}/share/dcpomatic2', 'zoom_all.png') + bld.install_files('${PREFIX}/share/dcpomatic2', 'select.png') + bld.install_files('${PREFIX}/share/dcpomatic2', 'snap.png') + bld.install_files('${PREFIX}/share/dcpomatic2', 'sequence.png') + bld.install_files('${PREFIX}/share/dcpomatic2', 'me.jpg') + bld.install_files('${PREFIX}/share/dcpomatic2', 'tick.png') + bld.install_files('${PREFIX}/share/dcpomatic2', 'no_tick.png') + bld.install_files('${PREFIX}/share/dcpomatic2', 'link.png')