blob: db262abe5ce11d1e9cc52ab04252cbf1a8e8b635 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
Project::OSiRiON world editor - INSTALL
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
By default, configure will assume Qt 4 is installed in /usr
autoreconf && \
./configure && \
make
On Ubuntu, use:
autoreconf && \
./configure --with-qt-includes=/usr/include/qt4 && \
make
Run
src/editor
|