build: Revert top-level project name to not have a prefix

Should make meson dist easier to work with.
This commit is contained in:
Arun Raghavan 2020-12-03 23:12:48 -05:00
parent 8ce8bebb7d
commit ce1a78887a

View File

@ -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')