summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Raghavan <arun@asymptotic.io>2020-12-03 23:12:48 -0500
committerArun Raghavan <arun@asymptotic.io>2020-12-10 18:24:05 -0500
commitce1a78887a1a0dfed3ebdb4de964d7afefebe896 (patch)
tree7a66bb5e065fcefb040a5594e046fe908556bac4
parent8ce8bebb7d852491326af1075ead74e757ae4611 (diff)
downloadwebrtc-audio-processing-ce1a78887a1a0dfed3ebdb4de964d7afefebe896.tar.gz
build: Revert top-level project name to not have a prefix
Should make meson dist easier to work with.
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 41e88fa..bae155e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('webrtc-audio-processing-1', 'c', 'cpp',
+project('webrtc-audio-processing', 'c', 'cpp',
version : '1.1',
meson_version : '>= 0.54',
default_options : [ 'warning_level=1',
@@ -27,7 +27,7 @@ ac_minor_version = minor_version
ac_version = ac_major_version + '.' + ac_minor_version
ac_project_name = 'webrtc-audio-coding-' + ac_major_version
-include_subdir = meson.project_name()
+include_subdir = apm_project_name
cc = meson.get_compiler('c')
cpp = meson.get_compiler('cpp')