diff options
author | Jens Georg <mail@jensge.org> | 2021-08-07 09:41:50 +0200 |
---|---|---|
committer | Jens Georg <mail@jensge.org> | 2021-11-21 12:05:07 +0100 |
commit | 8ce9544b3c3ebc0385a7c5942c09b734dc7e4ee2 (patch) | |
tree | 3ce88c131bd363d96ccc2deee39ab6e124d4534b /tests/meson.build | |
parent | b77d9734101b4dbccd8cfb56a04e0ce52d119ec1 (diff) | |
download | gupnp-8ce9544b3c3ebc0385a7c5942c09b734dc7e4ee2.tar.gz |
all: Initial port to libsoup3 API
Diffstat (limited to 'tests/meson.build')
-rw-r--r-- | tests/meson.build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build index 33637d7..a6f0b4b 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -1,11 +1,12 @@ -foreach program : ['context', 'bugs'] +foreach program : ['context', 'bugs', 'service'] test( program, executable( 'test-' + program, 'test-@0@.c'.format (program), dependencies : gupnp, - c_args : '-DDATA_PATH="@0@/data"'.format(meson.current_source_dir()) + c_args : '-DDATA_PATH="@0@/data"'.format(meson.current_source_dir()), + include_directories : config_h_inc, ), is_parallel : false ) |