INSTALL 787 B

123456789101112131415161718192021222324252627
  1. Installing Speex is as easy as:
  2. 1. Using the autotools build system:
  3. % ./configure [--prefix=<install-path>]
  4. % make
  5. % make install
  6. Note that if you are using the code from Git, you will need to run "autogen.sh"
  7. and then "configure".
  8. 2. Using the Meson build system:
  9. % meson setup builddir [--prefix=<install-path>] [-Doption=value]
  10. % meson configure builddir (to see configuration options and default values)
  11. % ninja -C builddir
  12. % ninja -C builddir install
  13. The Meson build has been tested for Linux, macOS, iOS, Android and
  14. Windows (MingW + MSVC) targets, both native builds and cross builds.
  15. See meson_options.txt for a list of available configuration options.
  16. More information on how to install Meson and use it can be found here:
  17. https://mesonbuild.com/Quick-guide.html