
- Requirements:

  - CMake (tested with version 3.25.1).

  - A C++ compiler with C++17 support.
    The following compilers have been tested:
    - GCC 12.2          (Linux+GNU x86_64)
    - LLVM/Clang 14.0.6 (Linux+GNU x86_64)

- Build:

  - Linux+GNU - GCC:

    mkdir ../build-gama_tts
    cd ../build-gama_tts
    cmake -D CMAKE_BUILD_TYPE=Release ../gama_tts
    cmake --build .

  - Linux+GNU - Clang:

    mkdir ../build-gama_tts
    cd ../build-gama_tts
    CXX=clang++ cmake -D CMAKE_BUILD_TYPE=Release ../gama_tts
    cmake --build .

- Test (Linux+GNU):

  - Execute in the directory "build-gama_tts":

    echo "Hello world." | ./gama_tts tts ../data/voice/english/5_male test.wav

  - Play the file test.wav.
