aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorPeter Delevoryas <pdel@fb.com>2022-05-14 15:32:13 -0700
committerPeter Delevoryas <pdel@fb.com>2022-05-18 21:14:14 -0700
commit0f8dcfa2ab62be6e635148a514d978268e958356 (patch)
treea046a2addc2d6da8fd056f2b2c4f45e371a4cebb /meson.build
parentec7f20e8b634d4957258969ec82c7b3fe3802705 (diff)
downloadslirp-0f8dcfa2ab62be6e635148a514d978268e958356.zip
slirp-0f8dcfa2ab62be6e635148a514d978268e958356.tar.gz
slirp-0f8dcfa2ab62be6e635148a514d978268e958356.tar.bz2
ncsi: Add basic test for Get Version ID response
Signed-off-by: Peter Delevoryas <pdel@fb.com>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build8
1 files changed, 8 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 5fe33d3..435f331 100644
--- a/meson.build
+++ b/meson.build
@@ -151,6 +151,14 @@ pingtest = executable('pingtest', 'test/pingtest.c',
test('ping', pingtest)
+ncsitest = executable('ncsitest', 'test/ncsitest.c',
+ link_with: [lib],
+ include_directories: ['src'],
+ dependencies: [glib_dep, platform_deps]
+)
+
+test('ncsi', ncsitest)
+
if install_devel
install_headers(['src/libslirp.h'], subdir : 'slirp')