diff options
Diffstat (limited to 'meson/test cases/common/49 custom target/depfile/meson.build')
-rw-r--r-- | meson/test cases/common/49 custom target/depfile/meson.build | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meson/test cases/common/49 custom target/depfile/meson.build b/meson/test cases/common/49 custom target/depfile/meson.build new file mode 100644 index 000000000..46bca7405 --- /dev/null +++ b/meson/test cases/common/49 custom target/depfile/meson.build @@ -0,0 +1,7 @@ + + +mytarget = custom_target('depfile', + output : 'dep.dat', + depfile : 'dep.dat.d', + command : [find_program('dep.py'), meson.current_source_dir(), '@DEPFILE@', '@OUTPUT@'], +) |