summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/executable-suffixes.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2023-11-19 21:58:19 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2023-11-19 21:58:19 +0200
commit7368795d13081d4928a9ba04d48498ca2442624b (patch)
treeca56a5022733cb9dadb92d9f28fdf4e105f616fc /docs/markdown/snippets/executable-suffixes.md
parent1c0c89d30f2b02068eef2b9a64ea824b2cd5d09b (diff)
downloadmeson-7368795d13081d4928a9ba04d48498ca2442624b.tar.gz
Generate release notes for 1.3.0.
Diffstat (limited to 'docs/markdown/snippets/executable-suffixes.md')
-rw-r--r--docs/markdown/snippets/executable-suffixes.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/markdown/snippets/executable-suffixes.md b/docs/markdown/snippets/executable-suffixes.md
deleted file mode 100644
index 44471e9dd..000000000
--- a/docs/markdown/snippets/executable-suffixes.md
+++ /dev/null
@@ -1,14 +0,0 @@
-## Target names for executables now take into account suffixes.
-
-In previous versions of meson, a `meson.build` file like this:
-
-```
-exectuable('foo', 'main.c')
-exectuable('foo', 'main.c', name_suffix: 'bar')
-```
-
-would result in a configure error because meson internally used
-the same id for both executables. This build file is now allowed
-since meson takes into account the `bar` suffix when generating the
-second executable. This allows for executables with the same basename
-but different suffixes to be built in the same subdirectory.