virt-viewer/build-aux/run-windres.py
Daniel P. Berrangé b2c072cf0b build: introduce meson build recipes
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2021-01-25 16:02:48 +00:00

19 lines
335 B
Python

#!/usr/bin/python3
import sys
import subprocess
windres = sys.argv[1]
icondir = sys.argv[2]
manifestdir = sys.argv[3]
rcfile = sys.argv[4]
objfile = sys.argv[5]
subprocess.check_call([
windres,
"-DICONDIR=\\\"" + icondir + "\\\"",
"-DMANIFESTDIR=\\\"" + manifestdir + "\\\"",
"-i", rcfile,
"-o", objfile,
])