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.
pull/11055/head
Tristan Partin 2 years ago committed by Eli Schwartz
parent 8dfa55005e
commit a2cac72d9b
  1. 2
      docs/markdown/External-Project-module.md
  2. 4
      docs/markdown/Release-notes-for-0.56.0.md
  3. 2
      docs/markdown/Release-notes-for-0.57.0.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@',

@ -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@',

@ -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@'`,

Loading…
Cancel
Save