diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-11-19 01:14:05 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-11-20 16:52:45 -0500 |
commit | 8f41154827d9608234d0c0455551392d968d9e23 (patch) | |
tree | e180bf6db1c2bd2f8370108b693c5e7a45a9bf7f /test cases/common/9 header install/meson.build | |
parent | aa9668a2fc40b728ec0e3afed85ac9e12c3c50f1 (diff) | |
download | meson-8f41154827d9608234d0c0455551392d968d9e23.zip meson-8f41154827d9608234d0c0455551392d968d9e23.tar.gz meson-8f41154827d9608234d0c0455551392d968d9e23.tar.bz2 |
Can specify headers to install with Files.
Diffstat (limited to 'test cases/common/9 header install/meson.build')
-rw-r--r-- | test cases/common/9 header install/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test cases/common/9 header install/meson.build b/test cases/common/9 header install/meson.build index 8c8ca73..7f3ce51 100644 --- a/test cases/common/9 header install/meson.build +++ b/test cases/common/9 header install/meson.build @@ -2,7 +2,10 @@ project('header install', 'c') as_array = ['subdir.h'] +subdir('vanishing_subdir') +subdir('sub') + h1 = install_headers('rootdir.h') h2 = install_headers(as_array, subdir : 'subdir') +h3 = install_headers(subheader) -subdir('vanishing_subdir') |