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.

CMakeLists.txt 1.0KB

123456789101112131415161718192021222324252627282930313233343536
  1. cmake_minimum_required(VERSION 3.8)
  2. project(espeak-ng
  3. VERSION 1.52.0.1
  4. DESCRIPTION "open source speech synthesizer that supports more than hundred languages and accents"
  5. HOMEPAGE_URL "https://github.com/espeak-ng/espeak-ng"
  6. )
  7. include(CTest)
  8. include(cmake/deps.cmake)
  9. include(cmake/config.cmake)
  10. add_subdirectory(src)
  11. include(cmake/data.cmake)
  12. include(cmake/docs.cmake)
  13. include(cmake/package.cmake)
  14. include(CPack)
  15. include(CTest)
  16. add_subdirectory(tests)
  17. option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
  18. message(STATUS "Configuration:")
  19. message(STATUS " shared: ${BUILD_SHARED_LIBS}")
  20. message(STATUS " mbrola: ${USE_MBROLA} (${MBROLA_BIN})")
  21. message(STATUS " libsonic: ${USE_LIBSONIC} (${SONIC_LIB} ${SONIC_INC})")
  22. message(STATUS " libpcaudio: ${USE_LIBPCAUDIO} (${PCAUDIO_LIB} ${PCAUDIO_INC})")
  23. message(STATUS " klatt: ${USE_KLATT}")
  24. message(STATUS " speech-player: ${USE_SPEECHPLAYER}")
  25. message(STATUS " async: ${USE_ASYNC}")
  26. install(
  27. DIRECTORY vim/ftdetect vim/syntax DESTINATION share/vim/vimfiles
  28. )