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.

package.cmake 661B

1234567891011121314151617181920212223242526272829303132333435
  1. list(APPEND CPACK_SOURCE_IGNORE_FILES
  2. /\.git/
  3. /\.gitignore
  4. /\.github/
  5. /\.tx/
  6. /\.travis.yml
  7. /_layouts/
  8. /android/
  9. /build/
  10. /chromium_extension/
  11. /data/
  12. /docs/
  13. /emscripten/
  14. /fastlane/
  15. /tools/
  16. /vim/
  17. )
  18. set(PACKAGE_NAME ${PROJECT_NAME})
  19. set(VERSION ${PROJECT_VERSION})
  20. set(prefix ${CMAKE_INSTALL_PREFIX})
  21. set(exec_prefix ${CMAKE_INSTALL_PREFIX})
  22. set(libdir "\${exec_prefix}/lib")
  23. set(includedir "\${prefix}/include")
  24. configure_file(
  25. ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_NAME}.pc.in
  26. ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc
  27. @ONLY
  28. )
  29. install(
  30. FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc DESTINATION lib/pkgconfig
  31. )