cosmetic improvements

This commit is contained in:
Alexander Epaneshnikov 2021-01-25 23:42:52 +03:00
commit 0f0cafde6f
No known key found for this signature in database
GPG key ID: 1736C918F59A5673

View file

@ -1,13 +1,13 @@
project('espeakup', 'c',
version : '0.82',
license : 'GPL-3.0-or-later',
license : 'GPL-3.0+',
default_options : ['buildtype=debugoptimized', 'c_std=gnu11', 'warning_level=3'])
cc = meson.get_compiler('c')
thread_dep = dependency('threads')
espeak_dep = dependency('espeak-ng')
alsa_dep = dependency('alsa')
m_dep = cc.find_library('m', required : false)
math_dep = cc.find_library('m', required : false)
subdir('src')
subdir('doc')
@ -17,5 +17,5 @@ executable('espeakup',
espeakup_sources,
espeakup_version,
include_directories : espeakup_incdir,
dependencies : [thread_dep, espeak_dep, alsa_dep, m_dep],
dependencies : [thread_dep, espeak_dep, alsa_dep, math_dep],
install : true)