diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-12-18 15:32:13 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-12-22 22:38:20 +0200 |
commit | 77e0008a1fede82851fdf13438619cb62e61c297 (patch) | |
tree | c17db0ec3c718b5d664534344056b5139ae68fa4 /docs/markdown/snippets | |
parent | 7981308e6e600535efeba6b50cdda62d43e7c584 (diff) | |
download | meson-77e0008a1fede82851fdf13438619cb62e61c297.zip meson-77e0008a1fede82851fdf13438619cb62e61c297.tar.gz meson-77e0008a1fede82851fdf13438619cb62e61c297.tar.bz2 |
cmake: Fix obeject libraries
This fixes an issue with generated sources and object libraries, as
well as an issue on windows with the `link` linker and the vs backend.
The last issue is resolved by building the source files multiple times
to avoid extracting object files in meson.
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/cmake_improvements.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/markdown/snippets/cmake_improvements.md b/docs/markdown/snippets/cmake_improvements.md new file mode 100644 index 0000000..95f30cc --- /dev/null +++ b/docs/markdown/snippets/cmake_improvements.md @@ -0,0 +1,11 @@ +## Improved CMake subprojects support + +With this release even more CMake projects are supported via +[CMake subprojects](CMake-module.md#cmake-subprojects) due to these internal +improvements: + +- Use the CMake file API for CMake >=3.14 +- Handle the explicit dependencies via `add_dependency` +- Basic support for `add_custom_target` +- Improved `add_custom_command` support +- Object library support on Windows |