Skip to content

Latest commit

 

History

History
57 lines (50 loc) · 1.8 KB

INSTALL.md

File metadata and controls

57 lines (50 loc) · 1.8 KB

Audiality 2

This file explains how to build and install Audiality 2 from source.

Installing

  • Install the dependencies. You'll need SDL and/or JACK for the integrated audio I/O drivers, but it is possible to build Audiality 2 without any audio drivers at all, if you want to use Audiality 2 for offline rendering, or handle audio I/O in the host applications.

  • Download the source code.

  • Configure the source tree.

    • Option 1 (Un*x with bash or similar shell)
      • ./configure [target]
        • Currently available targets:
          • release
          • static
          • maintainer
          • debug
          • mingw-release
          • mingw-debug
          • mingw-64-release
          • mingw-64-debug
          • mingw-release-static
          • mingw-debug-static
          • mingw-64-release-static
          • mingw-64-debug-static
          • all (all of the above)
          • (Default if not specified: release)
    • Option 2 (Using CMake directly)
      • mkdir build
      • cd build
      • cmake ..
  • Build and install.

    • ./make-all
      • The resulting executables are found in "build//src/"
    • Alternatively: Enter the desired build target directory.
      • make
      • Optional: sudo make install
  • Cleaning up after building in-tree:

    • ./clean-all
      • Removes all build files generated by ./make-all