diff options
| author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2023-04-11 10:21:55 +0200 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-04-24 11:41:55 -0400 |
| commit | 09ec4f6e225fb1634a800a58c28a87fe3733b343 (patch) | |
| tree | 622cbdfb543fbc3bfced2efd71914d296460a4df /docs/markdown | |
| parent | 18cfa545f03ddb6cb8378fdadec4f284aa7ea221 (diff) | |
| download | meson-09ec4f6e225fb1634a800a58c28a87fe3733b343.tar.gz | |
dependencies: allow to fallback on CMake to find the SDL2 library
On Windows, the SDL2 library is generally provided with only CMake config
files. This commit allows meson to fallback on CMake as a last resort to
find the SDL2 library.
Diffstat (limited to 'docs/markdown')
| -rw-r--r-- | docs/markdown/Dependencies.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md index 356b181df..29894ac56 100644 --- a/docs/markdown/Dependencies.md +++ b/docs/markdown/Dependencies.md @@ -728,10 +728,10 @@ your own risk. ## SDL2 SDL2 can be located using `pkg-confg`, the `sdl2-config` config tool, -or as an OSX framework. +as an OSX framework, or `cmake`. -`method` may be `auto`, `config-tool`, `extraframework` or -`pkg-config`. +`method` may be `auto`, `config-tool`, `extraframework`, +`pkg-config` or `cmake`. ## Shaderc |
