meson: fix meson 0.58 warning with libvhost-user subproject
authorMarc-André Lureau <marcandre.lureau@redhat.com>
Wed, 5 May 2021 15:13:12 +0000 (19:13 +0400)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 29 Jul 2021 08:15:52 +0000 (10:15 +0200)
Meson now checks that subprojects do not access files from parent
project. While we all agree this is best practice, libvhost-user also
want to share a few headers with QEMU, and libvhost-user isn't really a
standalone project at this point (although this is making the dependency
a bit more explicit).

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20210505151313.203258-1-marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
subprojects/libvhost-user/include/atomic.h [new symlink]
subprojects/libvhost-user/libvhost-user.c
subprojects/libvhost-user/meson.build
subprojects/libvhost-user/standard-headers/linux [new symlink]

diff --git a/subprojects/libvhost-user/include/atomic.h b/subprojects/libvhost-user/include/atomic.h
new file mode 120000 (symlink)
index 0000000..8c2be64
--- /dev/null
@@ -0,0 +1 @@
+../../../include/qemu/atomic.h
\ No newline at end of file
index fab7ca17ee1fb27bcfc338527d1aeb9f923aade5..2971ba01123db52f832f5cac8f8bba09323b3837 100644 (file)
@@ -40,7 +40,7 @@
 
 #endif
 
-#include "qemu/atomic.h"
+#include "include/atomic.h"
 
 #include "libvhost-user.h"
 
index b03446e7cd60cab805399d7752067a49bc3464bc..39825d9404aeef605dc9c69d30d1d92fcf84fe98 100644 (file)
@@ -4,21 +4,17 @@ project('libvhost-user', 'c',
 
 threads = dependency('threads')
 glib = dependency('glib-2.0')
-inc = include_directories('../../include', '../../linux-headers')
 
 vhost_user = static_library('vhost-user',
                             files('libvhost-user.c'),
-                            include_directories: inc,
                             dependencies: threads,
                             c_args: '-D_GNU_SOURCE')
 
 executable('link-test', files('link-test.c'),
-           link_whole: vhost_user,
-           include_directories: inc)
+           link_whole: vhost_user)
 
 vhost_user_glib = static_library('vhost-user-glib',
                                  files('libvhost-user-glib.c'),
-                                 include_directories: inc,
                                  link_with: vhost_user,
                                  dependencies: glib)
 
diff --git a/subprojects/libvhost-user/standard-headers/linux b/subprojects/libvhost-user/standard-headers/linux
new file mode 120000 (symlink)
index 0000000..15a2378
--- /dev/null
@@ -0,0 +1 @@
+../../../include/standard-headers/linux
\ No newline at end of file