mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
Make a standalone hello world
We want to test building against the installed GTK in ci, so lets add a standalone project.
This commit is contained in:
parent
5ef6944a41
commit
06caa57f9a
10
examples/hello/meson.build
Normal file
10
examples/hello/meson.build
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
project('hello', 'c',
|
||||||
|
version: '4.3.0',
|
||||||
|
meson_version: '>= 0.50.0',
|
||||||
|
)
|
||||||
|
|
||||||
|
executable('hello',
|
||||||
|
[ 'hello-world.c' ],
|
||||||
|
dependencies: [ dependency('gtk4') ],
|
||||||
|
install: false
|
||||||
|
)
|
@ -2,7 +2,6 @@ examples = [
|
|||||||
'builder',
|
'builder',
|
||||||
'drawing',
|
'drawing',
|
||||||
'grid-packing',
|
'grid-packing',
|
||||||
'hello-world',
|
|
||||||
'plugman',
|
'plugman',
|
||||||
'search-bar',
|
'search-bar',
|
||||||
'sunny',
|
'sunny',
|
||||||
|
Loading…
Reference in New Issue
Block a user