summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-08-06 21:02:18 -0500
committerDylan Baker <dylan@pnwbakers.com>2023-10-05 08:43:38 -0700
commit03a0d3ddfb092ceb48f1a30fdf5e4b6af2890235 (patch)
tree38483c65046712110207833530b59df99853499d /docs/markdown/snippets
parentadb1a360b9f9edb26eda233326b1d539baeccd5b (diff)
downloadmeson-03a0d3ddfb092ceb48f1a30fdf5e4b6af2890235.tar.gz
mcompile: add suffix as an additional parameter
Since the previous commit allows for more scenarios with name collisions, it makes sense to expand the compile command so that it can also take into account suffixes. i.e. meson compile -C build foo.exe can now work if the executable has an exe suffix along with being named foo.
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r--docs/markdown/snippets/meson_compile_suffixes.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/markdown/snippets/meson_compile_suffixes.md b/docs/markdown/snippets/meson_compile_suffixes.md
new file mode 100644
index 000000000..481e8adf4
--- /dev/null
+++ b/docs/markdown/snippets/meson_compile_suffixes.md
@@ -0,0 +1,7 @@
+## Meson compile command now accepts suffixes for TARGET
+
+The syntax for specifying a target for meson compile is now
+`[PATH_TO_TARGET/]TARGET_NAME.TARGET_SUFFIX[:TARGET_TYPE]` where
+`TARGET_SUFFIX` is the suffix argument given in the build target
+within meson.build. It is optional and `TARGET_NAME` remains
+sufficient if it uniquely resolves to one single target.