forked from AuroraMiddleware/gtk
082cf3553d
And fix libgtk_dep/libgdk_dep to link_with the shared lib
15 lines
269 B
Meson
15 lines
269 B
Meson
|
|
cssresources = gnome.compile_resources(
|
|
'cssresources',
|
|
'test-css-style.gresource.xml',
|
|
source_dir: '.',
|
|
)
|
|
|
|
test_style = executable(
|
|
'test-css-style',
|
|
'test-css-style.c',
|
|
cssresources,
|
|
dependencies: libgtk_dep,
|
|
)
|
|
test('css/style/test-style', test_style)
|