mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
06caa57f9a
We want to test building against the installed GTK in ci, so lets add a standalone project.
11 lines
193 B
Meson
11 lines
193 B
Meson
project('hello', 'c',
|
|
version: '4.3.0',
|
|
meson_version: '>= 0.50.0',
|
|
)
|
|
|
|
executable('hello',
|
|
[ 'hello-world.c' ],
|
|
dependencies: [ dependency('gtk4') ],
|
|
install: false
|
|
)
|