aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r--docs/markdown/snippets/find-override.md10
1 files changed, 10 insertions, 0 deletions
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)
+```