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 602B

12345678910111213141516
  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. if (HAVE_PTHREAD)
  9. option(USE_ASYNC "Support asynchronous speech synthesis" ON)
  10. else()
  11. set(USE_ASYNC OFF)
  12. endif()
  13. option(ESPEAK_COMPAT "Install compat binary symlinks" OFF)