From ce1a78887a1a0dfed3ebdb4de964d7afefebe896 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Thu, 3 Dec 2020 23:12:48 -0500 Subject: build: Revert top-level project name to not have a prefix Should make meson dist easier to work with. --- meson.build | 4 ++-- 1 file 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') -- cgit v1.2.1