summaryrefslogtreecommitdiffstats
path: root/test cases/windows/14 resources with custom target depend_files/ico/gen-ico.py
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/windows/14 resources with custom target depend_files/ico/gen-ico.py')
-rwxr-xr-xtest cases/windows/14 resources with custom target depend_files/ico/gen-ico.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test cases/windows/14 resources with custom target depend_files/ico/gen-ico.py b/test cases/windows/14 resources with custom target depend_files/ico/gen-ico.py
new file mode 100755
index 0000000..c49e0dd
--- /dev/null
+++ b/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())