ladybird/Meta/gn/secondary/Ladybird/compile_qt_resource_file.gni
Andrew Kaster 10298f1e9a Meta: Move invoke_process_with_args.py to common location
This script was already used by both Ladybird and the Kernel, so move it
into Meta/gn/build instead.
2023-10-23 15:25:24 -06:00

24 lines
664 B
Text

import("qt_install_prefix.gni")
template("compile_qt_resource_file") {
action_foreach(target_name) {
forward_variables_from(invoker, [ "sources" ])
script = "//Meta/gn/build/invoke_process_with_args.py"
outputs = [ "$target_gen_dir/rcc_{{source_name_part}}.cpp" ]
depfile = "$target_gen_dir/rcc_{{source_name_part}}.cpp.d"
args = [
qt_install_libexec + "rcc",
"-g",
"cpp",
"-d",
rebase_path(target_gen_dir, root_build_dir) +
"/rcc_{{source_name_part}}.cpp.d",
"-o",
rebase_path(target_gen_dir, root_build_dir) +
"/rcc_{{source_name_part}}.cpp",
"{{source}}",
]
}
}