aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/cmake.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/snippets/cmake.md')
-rw-r--r--docs/markdown/snippets/cmake.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/docs/markdown/snippets/cmake.md b/docs/markdown/snippets/cmake.md
deleted file mode 100644
index 16da78e..0000000
--- a/docs/markdown/snippets/cmake.md
+++ /dev/null
@@ -1,17 +0,0 @@
-## Configure CMake subprojects with meson.subproject_options
-
-Meson now supports passing configuration options to CMake and overriding
-certain build details extracted from the CMake subproject.
-
-The new CMake configuration options object is very similar to the
-[configuration data object](Reference-manual.md#configuration-data-object) object
-returned by [`configuration_data`](Reference-manual.md#configuration_data). It
-is generated by the `subproject_options` function
-
-All configuration options have to be set *before* the subproject is configured
-and must be passed to the `subproject` method via the `options` key. Altering
-the configuration object won't have any effect on previous `cmake.subproject`
-calls.
-
-**Note:** The `cmake_options` kwarg for the `subproject` function is now
-deprecated since it is replaced by the new `options` system.