aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/external_project.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-02-14 21:28:44 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2021-02-14 21:28:44 +0200
commit5d651e76b5b6dba5dd03ffec609719b02d703bb7 (patch)
treea2796da9b60e919af3fd08c4a206d29e61e6de5c /docs/markdown/snippets/external_project.md
parentc0b448d3ca98cea2c6a55609772baa7954702fd8 (diff)
downloadmeson-5d651e76b5b6dba5dd03ffec609719b02d703bb7.zip
meson-5d651e76b5b6dba5dd03ffec609719b02d703bb7.tar.gz
meson-5d651e76b5b6dba5dd03ffec609719b02d703bb7.tar.bz2
Set up release 0.57.0.57.0
Diffstat (limited to 'docs/markdown/snippets/external_project.md')
-rw-r--r--docs/markdown/snippets/external_project.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/markdown/snippets/external_project.md b/docs/markdown/snippets/external_project.md
deleted file mode 100644
index 1608d49..0000000
--- a/docs/markdown/snippets/external_project.md
+++ /dev/null
@@ -1,13 +0,0 @@
-## `unstable_external_project` improvements
-
-- Default arguments are added to `add_project()` in case some tags are not found
- in `configure_options`: `'--prefix=@PREFIX@'`, `'--libdir=@PREFIX@/@LIBDIR@'`,
- and `'--includedir=@PREFIX@/@INCLUDEDIR@'`. It was previously considered a fatal
- error to not specify them.
-
-- When the `verbose` keyword argument is not specified, or is false, command outputs
- are written on file in `<builddir>/meson-logs/`.
-
-- The `LD` environment variable is not passed any more when running the configure
- script. It caused issues because Meson sets `LD` to the `CC` linker wrapper but
- autotools expects it to be a real linker (e.g. `/usr/bin/ld`).