From 0e6a332d0cf8538c5f62a3def646c477c0d772b5 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 11 Apr 2018 21:44:20 +0530 Subject: Document that override_find_program works on configure_file [skip ci] Also link to the release notes snippet from the Reference manual --- docs/markdown/snippets/find-override.md | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'docs/markdown/snippets') diff --git a/docs/markdown/snippets/find-override.md b/docs/markdown/snippets/find-override.md index dd8fe9b..ef3a4a2 100644 --- a/docs/markdown/snippets/find-override.md +++ b/docs/markdown/snippets/find-override.md @@ -25,3 +25,13 @@ genprog = find_program('mycodegen') Now `genprog` points to the custom script. If the dependency had come from the system, then it would point to the system version. + +You can also use the return value of `configure_file()` to override +a program in the same way as above: + +```meson +prog_script = configure_file(input : 'script.sh.in', + output : 'script.sh', + configuration : cdata) +meson.override_find_program('mycodegen', prog_script) +``` -- cgit v1.1