diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-02-07 15:35:24 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-02-09 08:52:14 -0800 |
commit | deb59781fcc1183e19cca67e2db35c2e21f40ed5 (patch) | |
tree | 2f44c04d9215b93425b7e39656e24ee0a7e62814 /meson.build | |
parent | 69f9faeee6c10d07a9f9f35e175a75f6e7eeecd1 (diff) | |
download | libdrm-deb59781fcc1183e19cca67e2db35c2e21f40ed5.tar.gz libdrm-deb59781fcc1183e19cca67e2db35c2e21f40ed5.tar.bz2 libdrm-deb59781fcc1183e19cca67e2db35c2e21f40ed5.zip |
meson: include headers in root directory in ext_libdrm
Which is used in wraps.
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 1342a5b3..4aaeb7e1 100644 --- a/meson.build +++ b/meson.build @@ -294,7 +294,7 @@ libdrm = shared_library( ext_libdrm = declare_dependency( link_with : libdrm, - include_directories : inc_drm, + include_directories : [inc_root, inc_drm], ) install_headers('libsync.h', 'xf86drm.h', 'xf86drmMode.h') |