1
0
Fork 0
flightgear/3rdparty/hts_engine_API/CMakeLists.txt
James Turner 7b2d710cd0 Add hts_engine 1.08 and flite_hts 1.05 code.
- Not compiled by default, nor hooked up to anything yet.
- Both libraries licensed under modified BSD license.
- Added top-level CMake file for both, to create a plain static
  library for each.
2014-03-10 09:32:43 +00:00

19 lines
355 B
CMake

include_directories(${PROJECT_SOURCE_DIR}/3rdparty/hts_engine_API/include)
set(HTS_ENGINE_SOURCES
lib/HTS_audio.c
lib/HTS_engine.c
lib/HTS_gstream.c
lib/HTS_label.c
lib/HTS_misc.c
lib/HTS_model.c
lib/HTS_pstream.c
lib/HTS_sstream.c
lib/HTS_vocoder.c
)
add_library(hts_engine STATIC
${HTS_ENGINE_SOURCES}
)