summaryrefslogtreecommitdiff
path: root/test cases/frameworks
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-10-19 11:00:43 -0700
committerDylan Baker <dylan@pnwbakers.com>2017-11-23 19:54:48 -0800
commit8e53dec314901ce65d2ccfb6cb7011c1b3fef976 (patch)
tree8a4d8b646b210594e4697cea5796b4b3947d4a31 /test cases/frameworks
parentcc28eba8d08b2e270b0313f679dc7d390cc2fe44 (diff)
downloadmeson-8e53dec314901ce65d2ccfb6cb7011c1b3fef976.tar.gz
Use ConfigToolDependency for SDL2
Diffstat (limited to 'test cases/frameworks')
-rw-r--r--test cases/frameworks/16 sdl2/meson.build5
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')