diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-31 23:25:21 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-02-01 00:25:21 +0200 |
commit | e1a83793ae986db44bc810c36a8ea8090d81fe3f (patch) | |
tree | 56706c7f19a38b36f609f5ba6fa318f60c7acc1d /docs/markdown/snippets | |
parent | abad2ff0056f1100425426094165691386477d11 (diff) | |
download | meson-e1a83793ae986db44bc810c36a8ea8090d81fe3f.zip meson-e1a83793ae986db44bc810c36a8ea8090d81fe3f.tar.gz meson-e1a83793ae986db44bc810c36a8ea8090d81fe3f.tar.bz2 |
CMake: Added support for CMAKE_MODULE_PATH and extra CMake args (closes #4779)
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/cmake_module_path.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/markdown/snippets/cmake_module_path.md b/docs/markdown/snippets/cmake_module_path.md new file mode 100644 index 0000000..7beb453 --- /dev/null +++ b/docs/markdown/snippets/cmake_module_path.md @@ -0,0 +1,9 @@ +## Added `cmake_module_path` and `cmake_args` to dependency + +The CMake dependency backend can now make use of existing `Find<name>.cmake` +files by setting the `CMAKE_MODULE_PATH` with the new `dependency()` property +`cmake_module_path`. The paths given to `cmake_module_path` should be relative +to the project source directory. + +Furthermore the property `cmake_args` was added to give CMake additional +parameters. |