aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 #