mirror of
https://github.com/jambonz/freeswitch-modules.git
synced 2025-12-19 08:37:44 +00:00
* support azure stream * delete trash file * wip * wip * wip * wip * wip * wip * wip * fire variable_tts_time_to_first_byte_ms
10 lines
604 B
Makefile
10 lines
604 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_azure_tts
|
|
|
|
mod_LTLIBRARIES = mod_azure_tts.la
|
|
mod_azure_tts_la_SOURCES = mod_azure_tts.c azure_glue.cpp
|
|
mod_azure_tts_la_CFLAGS = $(AM_CFLAGS)
|
|
mod_azure_tts_la_CXXFLAGS = $(AM_CXXFLAGS) -std=c++14 -I/usr/local/include/MicrosoftSpeechSDK/cxx_api -I/usr/local/include/MicrosoftSpeechSDK/c_api
|
|
|
|
mod_azure_tts_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
|
mod_azure_tts_la_LDFLAGS = -avoid-version -module -no-undefined -L/usr/local/lib/MicrosoftSpeechSDK/x64 -lMicrosoft.CognitiveServices.Speech.core -shared `pkg-config --libs boost` -lstdc++
|