
- Requirements:

  - CMake and related tools (e.g. GNU Make or Ninja).

  - 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:
    - Execute in a terminal:

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

  - Linux+GNU - LLVM/Clang:
    - Execute in a terminal:

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

- Test (Linux+GNU):

  - Execute in a terminal, in the directory "build":

    ./gnuspeech_sa -c ../data/en -p test_param.txt -o test.wav "Hello world."

  - Play the file test.wav.
