cotinyang / MRCP-Plugin-Demo

A demo repository for UniMRCP plugin implementation with iflytek ASR & TTS API
124 stars 91 forks source link

how to compile this project using g++? #2

Closed wujsy closed 5 years ago

wujsy commented 5 years ago

Hi, I want to use some C++ third-party libs in this project, could I use g++ to compile this project, how should i modify?

cotinyang commented 5 years ago

Modify the Makefile.am in the plugin dir. AM_CPPFLAGS = $(UNIMRCP_PLUGIN_INCLUDES) -std=c++11 This worked for me.

wujsy commented 5 years ago

@cotinyang thanks