diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-10-30 10:25:24 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-10-30 10:25:24 +0200 |
commit | f16d31607eb3cd0f281758bd0944e206ef6be387 (patch) | |
tree | 0b711c4b63a55049eecfbaff95bf2ea386a4956e /docs/markdown/snippets/external_project.md | |
parent | 712cbe056811ebdf0d7358ba07a874717a1c736f (diff) | |
download | meson-f16d31607eb3cd0f281758bd0944e206ef6be387.zip meson-f16d31607eb3cd0f281758bd0944e206ef6be387.tar.gz meson-f16d31607eb3cd0f281758bd0944e206ef6be387.tar.bz2 |
Bump version number for release. This is the 10 000th commit!0.56.0
Diffstat (limited to 'docs/markdown/snippets/external_project.md')
-rw-r--r-- | docs/markdown/snippets/external_project.md | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/docs/markdown/snippets/external_project.md b/docs/markdown/snippets/external_project.md deleted file mode 100644 index 0ecaac8..0000000 --- a/docs/markdown/snippets/external_project.md +++ /dev/null @@ -1,24 +0,0 @@ -## External projects - -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. - -```meson -project('My Autotools Project', 'c', - meson_version : '>=0.56.0', -) - -mod = import('unstable_external_project') - -p = mod.add_project('configure', - configure_options : ['--prefix=@PREFIX@', - '--libdir=@LIBDIR@', - '--incdir=@INCLUDEDIR@', - '--enable-foo', - ], -) - -mylib_dep = p.dependency('mylib') -``` - |