diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-06-27 19:01:00 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-06-27 19:01:00 +0300 |
commit | dfb0414d9c78cbea9faf1a4bf42059a55eb2dd4b (patch) | |
tree | c946eed90b0d07587de0d99c48dfffccc15d17b0 /docs/markdown | |
parent | e4daad369ac1f5518e114561ca1c7349a4b309ae (diff) | |
parent | efef8f4f387db3f7f9322504fd1c73afb7ea3179 (diff) | |
download | meson-dfb0414d9c78cbea9faf1a4bf42059a55eb2dd4b.zip meson-dfb0414d9c78cbea9faf1a4bf42059a55eb2dd4b.tar.gz meson-dfb0414d9c78cbea9faf1a4bf42059a55eb2dd4b.tar.bz2 |
Merged Genie support.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Release-notes-for-0.42.0.md | 5 | ||||
-rw-r--r-- | docs/markdown/Vala.md | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/docs/markdown/Release-notes-for-0.42.0.md b/docs/markdown/Release-notes-for-0.42.0.md index 7c66870..4b8fbe3 100644 --- a/docs/markdown/Release-notes-for-0.42.0.md +++ b/docs/markdown/Release-notes-for-0.42.0.md @@ -18,3 +18,8 @@ Meson will now check the keyword arguments used when calling any function and print a warning if any of the keyword arguments is not known. In the future this will become a hard error. +## Add support for Genie to Vala compiler + +The Vala compiler has an alternative syntax, Genie, that uses the `.gs` +file extension. Meson now recognises and uses Genie files. + diff --git a/docs/markdown/Vala.md b/docs/markdown/Vala.md index 7674cf3..22a260a 100644 --- a/docs/markdown/Vala.md +++ b/docs/markdown/Vala.md @@ -1,14 +1,14 @@ --- title: Vala -short-description: Compiling Vala programs +short-description: Compiling Vala and Genie programs ... # Compiling Vala applications -Meson has support for compiling Vala programs. A skeleton Vala file looks like this. +Meson has support for compiling Vala and Genie programs. A skeleton `meson.build` file for Vala looks like this: ```meson -project('valaprog', ['vala', 'c']) +project('valaprog', 'vala', 'c') glib_dep = dependency('glib-2.0') gobject_dep = dependency('gobject-2.0') |