diff options
author | Scott Anderson <scott@anderso.nz> | 2018-08-22 21:14:07 +1200 |
---|---|---|
committer | Scott Anderson <scott@anderso.nz> | 2018-08-22 21:16:16 +1200 |
commit | 51892e0d7483d57b1e5eadae88e967e72e968cc0 (patch) | |
tree | b0775bb2146f9064a46786768cd458254561733c /meson.build | |
parent | a2bbf2c1f70ef374ff4a2506e65379c819b72414 (diff) |
Install headers explicitly
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/meson.build b/meson.build index d31296f7..06605189 100644 --- a/meson.build +++ b/meson.build @@ -58,7 +58,6 @@ libcap = dependency('libcap', required: get_option('libcap')) logind = dependency('lib' + get_option('logind-provider'), required: get_option('logind')) math = cc.find_library('m', required: false) -exclude_headers = [] wlr_parts = [] wlr_deps = [] @@ -78,18 +77,14 @@ endif subdir('protocol') subdir('render') -subdir('backend') -subdir('xwayland') - -includedir = get_option('includedir') -exclude_headers += 'meson.build' -install_subdir('include/wlr', install_dir: includedir, exclude_files: exclude_headers) - -subdir('include') +subdir('backend') subdir('types') subdir('util') subdir('xcursor') +subdir('xwayland') + +subdir('include') wlr_parts += [ lib_wl_protos, |