aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine SOULIER <103120622+asoulier@users.noreply.github.com>2023-05-04 09:35:58 -0700
committerGitHub <noreply@github.com>2023-05-04 09:35:58 -0700
commitacbdce637e3bddaf23819e9e87510d03649ddfec (patch)
tree22d2af5cb8ed3ec3f5829026caca290fea087f56
parent44ea886c9e44d3711d9e22901c617a3ce38c48a4 (diff)
parente37914a7c91a014ca0815a29eba1547251d05d3a (diff)
downloadliblc3-acbdce637e3bddaf23819e9e87510d03649ddfec.tar.gz
Merge pull request #27 from leytou/fix_install
build: meson: add install file 'lc3_cpp.h'
-rw-r--r--src/meson.build8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build
index 8f4ccec..007573b 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -36,7 +36,13 @@ lc3lib = library('lc3',
soversion: 1,
install: true)
-install_headers('../include/lc3.h', '../include/lc3_private.h')
+lc3_install_headers = [
+ '../include/lc3_private.h',
+ '../include/lc3.h',
+ '../include/lc3_cpp.h'
+]
+
+install_headers(lc3_install_headers)
pkg_mod = import('pkgconfig')