mirror of
https://github.com/kiwix/libkiwix.git
synced 2025-06-27 21:39:37 +00:00
There is a bug in meson 0.43.0 about the option depend_files (mesonbuild/meson#2633) By using the `files('search_result.tmpl')`, we workaround the bug and have everything working whatever the meson version is.
12 lines
358 B
Meson
12 lines
358 B
Meson
|
|
lib_resources = custom_target('resources',
|
|
input: 'resources_list.txt',
|
|
output: ['kiwixlib-resources.cpp', 'kiwixlib-resources.h'],
|
|
command:[res_compiler,
|
|
'--cxxfile', '@OUTPUT0@',
|
|
'--hfile', '@OUTPUT1@',
|
|
'--source_dir', '@OUTDIR@',
|
|
'@INPUT@'],
|
|
depend_files: files('search_result.tmpl')
|
|
)
|