aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-04 22:54:32 -0400
committerDavid Robillard <d@drobilla.net>2022-08-04 22:54:37 -0400
commite4996396487babb5007c43f42d2b68eb50f08fec (patch)
tree8f2d487abec95d4ac85440c7015a0f93397b4045
parent8124b4e533b91367a181f11efa34316faf35028b (diff)
downloadlv2-e4996396487babb5007c43f42d2b68eb50f08fec.tar.xz
Fix lv2.h missing from installation
-rw-r--r--lv2/core.lv2/meta.ttl4
-rw-r--r--meson.build3
2 files changed, 6 insertions, 1 deletions
diff --git a/lv2/core.lv2/meta.ttl b/lv2/core.lv2/meta.ttl
index bc6252d..ef30704 100644
--- a/lv2/core.lv2/meta.ttl
+++ b/lv2/core.lv2/meta.ttl
@@ -35,12 +35,14 @@ THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH R
meta:paniq ;
doap:release [
doap:revision "1.18.7" ;
- doap:created "2022-07-19" ;
+ doap:created "2022-08-04" ;
dcs:changeset [
dcs:item [
rdfs:label "lv2specgen: Fix installed data paths."
] , [
rdfs:label "Fix documentation build with meson 0.56.2."
+ ] , [
+ rdfs:label "Fix lv2.h missing from installation."
]
]
] , [
diff --git a/meson.build b/meson.build
index 67a4ccc..a6ae1b4 100644
--- a/meson.build
+++ b/meson.build
@@ -144,6 +144,9 @@ if get_option('old_headers')
include_prefix / 'core' / 'lv2_util.h',
)
+ # Special case lv2.h is also in top-level include directory
+ install_headers(files(include_prefix / 'core' / 'lv2.h'))
+
# Core headers are inconsistently in "lv2plug.in/ns/lv2core"
install_data(core_headers, install_dir: uri_include_dir / 'lv2core')