-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Vala
jpakkane edited this page May 14, 2014
·
10 revisions
Meson has experimental support for compiling Vala programs. A skeleton Vala file looks like this.
project('valaprog', 'vala')
glib = dependency('glib-2.0')
gobject = dependency('gobject-2.0')
executable('valaprog', 'prog.vala',
deps : [glib, gobject])
You must always specify glib and gobject as dependencies, because all Vala applications use them.
All documentation is now on the main web site.
This page should be at this address.