diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-06-06 21:55:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-06 21:55:55 +0300 |
commit | 266b297515f0e6d0e864564a2fc2f079e829a033 (patch) | |
tree | 79d0cacab38ea2919ee52786ac601aa7ba80fe10 /docs/markdown/Reference-manual.md | |
parent | 7561926a70e1920c6ff8754ee1a66ab0bc3ff431 (diff) | |
parent | 9a9ea1434ab4d204d73503a61d5c1a044ce07366 (diff) | |
download | meson-266b297515f0e6d0e864564a2fc2f079e829a033.zip meson-266b297515f0e6d0e864564a2fc2f079e829a033.tar.gz meson-266b297515f0e6d0e864564a2fc2f079e829a033.tar.bz2 |
Merge pull request #4969 from mensinda/cmakeSubProject
CMake subprojects
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index f59d627..0aa4253 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1082,7 +1082,7 @@ res2 = foo / bar ``` Builds a library that is either static, shared or both depending on -the value of `default_library` +the value of `default_library` user [option](https://mesonbuild.com/Builtin-options.html). You should use this instead of [`shared_library`](#shared_library), [`static_library`](#static_library) or @@ -2175,7 +2175,7 @@ an external dependency with the following methods: dep3 will add `['-Werror=foo', '-Werror=bar']` to the compiler args of any target it is added to, but libfoo will not be added to the link_args. - + *Note*: A bug present until 0.50.1 results in the above behavior not working correctly. |