diff options
| author | Balló György <ballogyor@gmail.com> | 2025-10-24 10:20:29 +0200 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-10-24 08:14:20 -0700 |
| commit | f4650db5b06371eeb37005245366325723eadf9e (patch) | |
| tree | 3d624de76cadc00b6fd5c09345da830ef8d46203 /test cases | |
| parent | dc64570008e7b1dbbcda88d6e000808cfb52dcaa (diff) | |
| download | meson-f4650db5b06371eeb37005245366325723eadf9e.tar.gz | |
Switch C# test to use gtk-sharp-3
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/csharp/4 external dep/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test cases/csharp/4 external dep/meson.build b/test cases/csharp/4 external dep/meson.build index 019d618b7..e1c3a7c5a 100644 --- a/test cases/csharp/4 external dep/meson.build +++ b/test cases/csharp/4 external dep/meson.build @@ -1,9 +1,9 @@ project('C# external library', 'cs') -glib_sharp_2 = dependency('glib-sharp-2.0', required : false) +glib_sharp_3 = dependency('glib-sharp-3.0', required : false) -if not glib_sharp_2.found() +if not glib_sharp_3.found() error('MESON_SKIP_TEST glib# not found.') endif -e = executable('prog', 'prog.cs', dependencies: glib_sharp_2, install : true) +e = executable('prog', 'prog.cs', dependencies: glib_sharp_3, install : true) test('libtest', e, args: [join_paths(meson.current_source_dir(), 'hello.txt')]) |
