diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2017-10-19 11:00:43 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2017-11-23 19:54:48 -0800 |
| commit | 8e53dec314901ce65d2ccfb6cb7011c1b3fef976 (patch) | |
| tree | 8a4d8b646b210594e4697cea5796b4b3947d4a31 /test cases/frameworks | |
| parent | cc28eba8d08b2e270b0313f679dc7d390cc2fe44 (diff) | |
| download | meson-8e53dec314901ce65d2ccfb6cb7011c1b3fef976.tar.gz | |
Use ConfigToolDependency for SDL2
Diffstat (limited to 'test cases/frameworks')
| -rw-r--r-- | test cases/frameworks/16 sdl2/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test cases/frameworks/16 sdl2/meson.build b/test cases/frameworks/16 sdl2/meson.build index c79bd46d7..61a34efa0 100644 --- a/test cases/frameworks/16 sdl2/meson.build +++ b/test cases/frameworks/16 sdl2/meson.build @@ -6,5 +6,8 @@ e = executable('sdl2prog', 'sdl2prog.c', dependencies : sdl2_dep) test('sdl2test', e) -# Ensure that we can find it with sdl2-config too +# Ensure that we can find it with sdl2-config too, using the legacy method name configdep = dependency('sdl2', method : 'sdlconfig') + +# And the modern method name +configdep = dependency('sdl2', method : 'config-tool') |
