1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-26 10:03:34 +03:00
libxml2/example/meson.build

28 lines
428 B
Meson
Raw Normal View History

2024-04-28 21:14:32 +02:00
examples = [
2024-04-04 12:14:46 +02:00
'gjobread',
2024-04-28 21:14:32 +02:00
'io1',
'io2',
'parse1',
'parse2',
'parse3',
'parse4',
'reader1',
'reader2',
'reader3',
'reader4',
'testWriter',
'tree1',
'tree2',
'xpath1',
'xpath2',
]
foreach example : examples
exe = executable(
example,
files(example + '.c'),
dependencies: xml_dep,
include_directories: config_dir,
)
endforeach