mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
initial meson support
This commit is contained in:
parent
30ef2145e7
commit
b699495471
1 changed files with 23 additions and 0 deletions
23
meson.build
Normal file
23
meson.build
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
project('espeakup', 'c',
|
||||
version : '0.82',
|
||||
default_options : ['c_std=c11', '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)
|
||||
|
||||
executable('espeakup',
|
||||
'src/cli.c',
|
||||
'src/espeak.c',
|
||||
'src/espeakup.c',
|
||||
'src/espeakup.h',
|
||||
'src/queue.c',
|
||||
'src/queue.h',
|
||||
'src/signal.c',
|
||||
'src/softsynth.c',
|
||||
'src/stringhandling.c',
|
||||
'src/stringhandling.h',
|
||||
dependencies : [thread_dep, espeak_dep, alsa_dep, m_dep],
|
||||
install : true)
|
||||
Loading…
Add table
Add a link
Reference in a new issue