|
From: Lasse Kärkkäi. <tr...@us...> - 2009-11-25 16:43:46
|
Module: performous Branch: master Commit: d377cde202e7982c21523b6b72e4f36adc6ea612 Author: Lasse Karkkainen <tro...@tr...> Date: Wed Nov 25 16:40:17 2009 +0200 Update Compiling.txt --- docs/Compiling.txt | 21 ++++++++++++++++----- 1 files changed, 16 insertions(+), 5 deletions(-) diff --git a/docs/Compiling.txt b/docs/Compiling.txt index 6e07ea3..4358721 100644 --- a/docs/Compiling.txt +++ b/docs/Compiling.txt @@ -5,16 +5,25 @@ To install from git: # Create separate build folder under trunk to avoid polluting the source three mkdir performous/build cd performous/build - # Configure and build with CMake - cmake .. + # Compile and install libplugin++ (our C++ plugin/DLL library) + cmake ../libs/plugin++/ + make + sudo make install + rm -rf * + # Compile and install libda (our audio library) + cmake ../libs/libda/ + make + sudo make install + rm -rf * + # Compile the game itself + cmake ../libs/libda/ make - # Install into system prefix /usr/local/ sudo make install # Run the game performous - # Should you need to change building settings (e.g. installation prefix) - ccmake . + In order to change installation location (the default is /usr/local/), + use cmake parameter -DCMAKE_INSTALL_PREFIX=/where/to. Dependencies: @@ -39,6 +48,8 @@ Dependencies: * PortAudio v18 or v19 * Pulseaudio + - PortMidi (optional) for MIDI drum support + Please refer to http://performous.org/develop.html for packages to install. |