eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.cmake 487B

12345678910
  1. include(CheckSymbolExists)
  2. check_symbol_exists(mkstemp "stdlib.h" HAVE_MKSTEMP)
  3. option(USE_MBROLA "Use mbrola for speech synthesis" ${HAVE_MBROLA})
  4. option(USE_LIBSONIC "Use libsonit for faster speech rates" ${HAVE_LIBSONIC})
  5. option(USE_LIBPCAUDIO "Use libPcAudio for sound output" ${HAVE_LIBPCAUDIO})
  6. option(USE_KLATT "Use klatt for speech synthesis" ON)
  7. option(USE_SPEECHPLAYER "Use speech-player for speech synthesis" ON)
  8. option(USE_ASYNC "Support asynchronous speech synthesis" ON)