diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-10-25 10:06:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-25 10:06:49 -0700 |
| commit | 2d058bdcff4c7da855826fc05bb8cdde7cff50c7 (patch) | |
| tree | 04b9d499fc1ee6ec0cde85a57cdd32478262b532 /test cases/vala | |
| parent | 3c48bd2d88e94db2c9f6e714b7b320889a5dcb38 (diff) | |
| parent | 66518d4dadef7bdb09bf1dc80682e1f9d33f1a1b (diff) | |
| download | meson-2d058bdcff4c7da855826fc05bb8cdde7cff50c7.tar.gz | |
Merge pull request #912 from valum-framework/wip/vala-custom-header-and-vapi
vala: Custom header and vapi name (fix #892)
Diffstat (limited to 'test cases/vala')
| -rw-r--r-- | test cases/vala/12 custom output/foo.vala | 0 | ||||
| -rw-r--r-- | test cases/vala/12 custom output/meson.build | 9 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test cases/vala/12 custom output/foo.vala b/test cases/vala/12 custom output/foo.vala new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/test cases/vala/12 custom output/foo.vala diff --git a/test cases/vala/12 custom output/meson.build b/test cases/vala/12 custom output/meson.build new file mode 100644 index 000000000..ef6dbb54d --- /dev/null +++ b/test cases/vala/12 custom output/meson.build @@ -0,0 +1,9 @@ +project('valatest', 'c', 'vala') + +glib = dependency('glib-2.0') +gobject = dependency('gobject-2.0') + +library('foo-1.0', 'foo.vala', + vala_header: 'foo.h', + vala_vapi: 'foo.vapi', + dependencies: [glib, gobject]) |
