Import meson build files from an 3.22

Specifically, from 6dd6660c685d22e88af5ed4d0b5f1f22df0338de
This commit is contained in:
Nirbheek Chauhan
2018-11-13 10:59:03 +05:30
committed by Christoph Reiter
parent c19ae9635e
commit 8ec004cc08
33 changed files with 2651 additions and 0 deletions

24
testsuite/gdk/meson.build Normal file
View File

@ -0,0 +1,24 @@
test_cairo = executable('cairo', 'cairo.c', dependencies: libgdk_dep)
test('gdk/cairo', test_cairo)
test_display = executable('display', 'display.c', dependencies: libgdk_dep)
test('gdk/display', test_display)
test_encoding = executable('encoding', 'encoding.c', dependencies: libgdk_dep)
test('gdk/encoding', test_encoding)
test_keysyms = executable('keysyms', 'keysyms.c', dependencies: libgdk_dep)
test('gdk/keysyms', test_keysyms)
test_rectangle = executable('rectangle', 'rectangle.c', dependencies: libgdk_dep)
test('gdk/rectangle', test_rectangle)
test_rgba = executable('rgba', 'rgba.c', dependencies: libgdk_dep)
test('gdk/rgba', test_rgba)
test_seat = executable('seat', 'seat.c', dependencies: libgdk_dep)
test('gdk/seat', test_seat)
test_visual = executable('visual', 'visual.c', dependencies: libgdk_dep)
test('gdk/visual', test_visual)