Skip to content

Latest commit

 

History

History
51 lines (43 loc) · 1.78 KB

INSTALL.md

File metadata and controls

51 lines (43 loc) · 1.78 KB

Kobo Redux

This file explains how to build and install Kobo Redux from source. It does NOT cover building of packages, but the executables built from this source tree ARE compatible with the proprietary data files; both demo and full version.

NOTE

The proprietary sound and graphics themes are not included in the source tree! However, placeholder GPL themes "chip" (sound) and "mono" (graphics) are included, making the game mostly playable with no external data.

Installing

  • Install the dependencies. Note that Audiality 1.9.x is a development branch, which means any given release of Kobo Redux will most likely only work with one specific Audiality version.

  • Download the source code.

  • Configure the source tree.

    • Option 1 (Un*x with bash or compatible shell)
      • ./configure [target]
        • Currently available targets:
          • release
          • demo
          • maintainer
          • debug
          • mingw-release
          • mingw-demo
          • mingw-debug
          • all (all of the above)
          • (Default if not specified: release + demo)
    • Option 2 (Using CMake directly; see 'configure' script to see how to set up the options)
      • 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