aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-09-16 23:01:22 -0400
committerDavid Robillard <d@drobilla.net>2022-09-16 23:01:22 -0400
commita4cb59300de1b83a7ceecfa099d33d5832c06b04 (patch)
tree54bb630f468dc2803dfb91b2991ebacc85851740
parent314d2d53750cb8b50c8d23f38028ac43f962bd42 (diff)
downloadchilbert-a4cb59300de1b83a7ceecfa099d33d5832c06b04.tar.gz
chilbert-a4cb59300de1b83a7ceecfa099d33d5832c06b04.tar.bz2
chilbert-a4cb59300de1b83a7ceecfa099d33d5832c06b04.zip
Fix header installation
-rw-r--r--meson.build10
1 files changed, 5 insertions, 5 deletions
diff --git a/meson.build b/meson.build
index 2dabce7..69a14eb 100644
--- a/meson.build
+++ b/meson.build
@@ -61,7 +61,7 @@ endif
include_dirs = include_directories('include')
-headers = [
+headers = files(
'include/chilbert/BoundedBitVec.hpp',
'include/chilbert/DynamicBitVec.hpp',
'include/chilbert/SmallBitVec.hpp',
@@ -69,9 +69,9 @@ headers = [
'include/chilbert/chilbert.hpp',
'include/chilbert/chilbert.ipp',
'include/chilbert/operators.hpp',
-]
+)
-detail_headers = [
+detail_headers = files(
'include/chilbert/detail/BitVecIndex.hpp',
'include/chilbert/detail/BitVecIterator.hpp',
'include/chilbert/detail/BitVecMask.hpp',
@@ -79,7 +79,7 @@ detail_headers = [
'include/chilbert/detail/gray_code_rank.hpp',
'include/chilbert/detail/operations.hpp',
'include/chilbert/detail/traits.hpp',
-]
+)
# Declare dependency for internal meson dependants
spaix_dep = declare_dependency(include_directories: include_dirs)
@@ -95,7 +95,7 @@ pkg.generate(
# Install headers to a versioned include directory
install_headers(headers, subdir: versioned_name / 'chilbert')
-install_headers(headers, subdir: versioned_name / 'chilbert' / 'detail')
+install_headers(detail_headers, subdir: versioned_name / 'chilbert' / 'detail')
######################
# Tests / Benchmarks #