diff options
author | Tristan Partin <tpartin@micron.com> | 2022-11-15 18:16:29 -0600 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-11-15 19:33:32 -0500 |
commit | a2cac72d9bcbe8d31dc591992964599c5664ba66 (patch) | |
tree | d606192623fe0c9c867e4e964ec34fbaefe5c7d2 /docs | |
parent | 8dfa55005e4f6386e54ca53909b66933e5930858 (diff) | |
download | meson-a2cac72d9bcbe8d31dc591992964599c5664ba66.zip meson-a2cac72d9bcbe8d31dc591992964599c5664ba66.tar.gz meson-a2cac72d9bcbe8d31dc591992964599c5664ba66.tar.bz2 |
Change `unstable_external_project` to `unstable-external_project`
Apparently this is a misspelling even though it has been in the docs
since the creation of the module.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/External-Project-module.md | 2 | ||||
-rw-r--r-- | docs/markdown/Release-notes-for-0.56.0.md | 4 | ||||
-rw-r--r-- | docs/markdown/Release-notes-for-0.57.0.md | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/markdown/External-Project-module.md b/docs/markdown/External-Project-module.md index f0bf2f7..615c6c1 100644 --- a/docs/markdown/External-Project-module.md +++ b/docs/markdown/External-Project-module.md @@ -114,7 +114,7 @@ project('My Autotools Project', 'c', meson_version : '>=0.56.0', ) -mod = import('unstable_external_project') +mod = import('unstable-external_project') p = mod.add_project('configure', configure_options : ['--prefix=@PREFIX@', diff --git a/docs/markdown/Release-notes-for-0.56.0.md b/docs/markdown/Release-notes-for-0.56.0.md index 368681f..782bb39 100644 --- a/docs/markdown/Release-notes-for-0.56.0.md +++ b/docs/markdown/Release-notes-for-0.56.0.md @@ -281,7 +281,7 @@ the default compiler. ## External projects -A new experimental module `unstable_external_project` has been added +A new experimental module `unstable-external_project` has been added to build code using other build systems than Meson. Currently only supporting projects with a configure script that generates Makefiles. @@ -290,7 +290,7 @@ project('My Autotools Project', 'c', meson_version : '>=0.56.0', ) -mod = import('unstable_external_project') +mod = import('unstable-external_project') p = mod.add_project('configure', configure_options : ['--prefix=@PREFIX@', diff --git a/docs/markdown/Release-notes-for-0.57.0.md b/docs/markdown/Release-notes-for-0.57.0.md index f16cf24..6911764 100644 --- a/docs/markdown/Release-notes-for-0.57.0.md +++ b/docs/markdown/Release-notes-for-0.57.0.md @@ -128,7 +128,7 @@ can be passed dependencies returned by `declare_dependency`, as long as they only specify compiler/linker arguments or other dependencies that satisfy the same requirements. -## `unstable_external_project` improvements +## `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@'`, |