diff options
Diffstat (limited to 'meson/test cases/csharp/4 external dep')
4 files changed, 23 insertions, 0 deletions
diff --git a/meson/test cases/csharp/4 external dep/hello.txt b/meson/test cases/csharp/4 external dep/hello.txt new file mode 100644 index 000000000..980a0d5f1 --- /dev/null +++ b/meson/test cases/csharp/4 external dep/hello.txt @@ -0,0 +1 @@ +Hello World! diff --git a/meson/test cases/csharp/4 external dep/meson.build b/meson/test cases/csharp/4 external dep/meson.build new file mode 100644 index 000000000..019d618b7 --- /dev/null +++ b/meson/test cases/csharp/4 external dep/meson.build @@ -0,0 +1,9 @@ +project('C# external library', 'cs') +glib_sharp_2 = dependency('glib-sharp-2.0', required : false) + +if not glib_sharp_2.found() + error('MESON_SKIP_TEST glib# not found.') +endif + +e = executable('prog', 'prog.cs', dependencies: glib_sharp_2, install : true) +test('libtest', e, args: [join_paths(meson.current_source_dir(), 'hello.txt')]) diff --git a/meson/test cases/csharp/4 external dep/prog.cs b/meson/test cases/csharp/4 external dep/prog.cs new file mode 100644 index 000000000..9393fef5d --- /dev/null +++ b/meson/test cases/csharp/4 external dep/prog.cs @@ -0,0 +1,8 @@ +using System; +using GLib; + +public class Prog { + static public void Main (string[] args) { + Console.WriteLine(GLib.FileUtils.GetFileContents(args[0])); + } +} diff --git a/meson/test cases/csharp/4 external dep/test.json b/meson/test cases/csharp/4 external dep/test.json new file mode 100644 index 000000000..a94303f3c --- /dev/null +++ b/meson/test cases/csharp/4 external dep/test.json @@ -0,0 +1,5 @@ +{ + "installed": [ + {"type": "file", "file": "usr/bin/prog.exe"} + ] +} |