mirror of
https://github.com/labwc/labwc.git
synced 2026-02-25 01:40:28 -05:00
Add tests/t1000-rcxml-simple-parse.c
This commit is contained in:
parent
91ce33dd0d
commit
40c0b169ef
5 changed files with 142 additions and 0 deletions
15
tests/meson.build
Normal file
15
tests/meson.build
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
rcxml_lib = static_library(
|
||||
'rcxml',
|
||||
sources: ['../src/config/rcxml.c'],
|
||||
dependencies: xml2,
|
||||
include_directories: [labwc_inc],
|
||||
link_with: library('libxml-2.0'),
|
||||
)
|
||||
|
||||
t1000 = executable(
|
||||
't1000-rcxml-simple-parse',
|
||||
sources: ['t1000-rcxml-simple-parse.c', 'tap.c'],
|
||||
include_directories: [labwc_inc],
|
||||
link_with: rcxml_lib,
|
||||
)
|
||||
test('t1000', t1000)
|
||||
Loading…
Add table
Add a link
Reference in a new issue