diff options
Diffstat (limited to 'meson/test cases/windows/14 resources with custom target depend_files/ico')
3 files changed, 14 insertions, 0 deletions
diff --git a/meson/test cases/windows/14 resources with custom target depend_files/ico/gen-ico.py b/meson/test cases/windows/14 resources with custom target depend_files/ico/gen-ico.py new file mode 100755 index 000000000..c49e0dd59 --- /dev/null +++ b/meson/test cases/windows/14 resources with custom target depend_files/ico/gen-ico.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 + +import sys + +with open(sys.argv[1], 'rb') as infile, open(sys.argv[2], 'wb') as outfile: + outfile.write(infile.read()) diff --git a/meson/test cases/windows/14 resources with custom target depend_files/ico/meson.build b/meson/test cases/windows/14 resources with custom target depend_files/ico/meson.build new file mode 100644 index 000000000..3fae9e86c --- /dev/null +++ b/meson/test cases/windows/14 resources with custom target depend_files/ico/meson.build @@ -0,0 +1,8 @@ +ico_writer = find_program('gen-ico.py') + +ico = custom_target('makeico', + input : 'sample.ico.in', + output : 'sample.ico', + command : [ico_writer, '@INPUT@', '@OUTPUT@'], + install : false, + build_always : false) diff --git a/meson/test cases/windows/14 resources with custom target depend_files/ico/sample.ico.in b/meson/test cases/windows/14 resources with custom target depend_files/ico/sample.ico.in Binary files differnew file mode 100644 index 000000000..24bd3d9e9 --- /dev/null +++ b/meson/test cases/windows/14 resources with custom target depend_files/ico/sample.ico.in |