diff options
author | Stijn Buys <ingar@osirion.org> | 2012-02-26 11:16:56 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-02-26 11:16:56 +0000 |
commit | 704a6c280bb14bf12292d9feb74d3383565a414b (patch) | |
tree | ec0e682f74cf4faa0203fd460302c0deafb2f928 | |
parent | 9e7b304351872f0d1c1fb7cc5af7e8bc3c7df678 (diff) |
Updated installation instructions for Ubuntu.
-rw-r--r-- | INSTALL | 28 |
1 files changed, 20 insertions, 8 deletions
@@ -1,22 +1,34 @@ Project::OSiRiON world editor - INSTALL - - You need to have Qt 4 installed. + Dependencies + + The editor depends on the Qt 4 library. + + On Ubuntu, use: + + sudo apt-get install qt-sdk + + Download the latest source code: - + svn co svn://osirion.org/osirion-editor cd osirion-editor Build - - ./configure + + By default, configure will assume Qt 4 is installed in /usr + + autoreconf && \ + ./configure && \ make - On Ubuntu, use + On Ubuntu, use: - ./configure --with-qt-includes=/usr/include/qt4 + autoreconf && \ + ./configure --with-qt-includes=/usr/include/qt4 && \ make + Run - + src/editor |