From 8e9be88f6967465473d4fdc9c32a046bbfb60daa Mon Sep 17 00:00:00 2001 From: Jouke Witteveen Date: Fri, 12 Apr 2024 19:44:17 +0200 Subject: docs: Add CMake build type release note snippet --- docs/markdown/snippets/cmake_build_type.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/markdown/snippets/cmake_build_type.md (limited to 'docs') diff --git a/docs/markdown/snippets/cmake_build_type.md b/docs/markdown/snippets/cmake_build_type.md new file mode 100644 index 000000000..af9e84dc8 --- /dev/null +++ b/docs/markdown/snippets/cmake_build_type.md @@ -0,0 +1,15 @@ +## Meson now propagates its build type to CMake + +When the CMake build type variable, `CMAKE_BUILD_TYPE`, is not set via the +`add_cmake_defines` method of the [`cmake options` object](CMake-module.md#cmake-options-object), +it is inferred from the [Meson build type](Builtin-options.md#details-for-buildtype). +Build types of the two build systems do not match perfectly. The mapping from +Meson build type to CMake build type is as follows: + +- `debug` -> `Debug` +- `debugoptimized` -> `RelWithDebInfo` +- `release` -> `Release` +- `minsize` -> `MinSizeRel` + +No CMake build type is set for the `plain` Meson build type. The inferred CMake +build type overrides any `CMAKE_BUILD_TYPE` environment variable. -- cgit v1.2.3