mirror of
https://github.com/jambonz/freeswitch-modules.git
synced 2025-12-19 08:37:44 +00:00
* Introduce Google Speech-To-Text V2 library * Add sign-off to previous commit Signed-off-by: Andrew Golledge <andreas.golledge@gmail.com> --------- Signed-off-by: Andrew Golledge <andreas.golledge@gmail.com>
11 lines
568 B
Makefile
11 lines
568 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_google_transcribe
|
|
|
|
mod_LTLIBRARIES = mod_google_transcribe.la
|
|
mod_google_transcribe_la_SOURCES = mod_google_transcribe.c google_glue.cpp google_glue_v1.cpp google_glue_v2.cpp
|
|
mod_google_transcribe_la_CFLAGS = $(AM_CFLAGS)
|
|
mod_google_transcribe_la_CXXFLAGS = -I $(top_srcdir)/libs/googleapis/gens $(AM_CXXFLAGS) -std=c++17
|
|
|
|
mod_google_transcribe_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
|
mod_google_transcribe_la_LDFLAGS = -avoid-version -module -no-undefined -shared `pkg-config --libs grpc++ grpc`
|