-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
181 lines (133 loc) · 6.16 KB
/
README
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
Copyright (C) 2008-2009 - Lucas De Marchi
Trissa is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as published by
the Free Software Foundation.
Trissa is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Trissa; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor,
Boston, MA 02110-1301 USA
1. Dependencies
================
You will need the following packages to compile Trissa:
* CEGUI - http://www.cegui.org.uk/
The only version tested is 0.6.2. It's possible to work with other
versions, but not guaranteed
* OIS - http://sourceforge.net/projects/wgois/
Version 1.2 is known to work, although older versions probably work too.
* Nvidia CG Toolkit - use your distributions' package
* OGRE - http://www.ogre3d.org
You will need version 1.7. As of now, it's not released yet, so you will
need to compile it yourself from svn.
* Boost - http://www.boost.org/
It's advised to have the complete boost package and the best way to
accomplish this is using your distribution package. All versions of
boost in recent distributions are known to work. If you want to compile
from source, you will need:
- Filesystem:
http://www.boost.org/doc/libs/1_39_0/libs/filesystem/doc/index.htm
- Program Options:
http://www.boost.org/doc/libs/1_39_0/doc/html/program_options.html
- Thread:
http://www.boost.org/doc/libs/1_39_0/doc/html/thread.html
* Scons - http://www.scons.org/
Versions 1.2 and 1.1 are known to work. Use your distribution's package
1.1 Supported distros
---------------------
1.1.1 Ubuntu
CEGUI, OIS, Nvidia CG Toolkit and OGRE are available in PPA. To use it
you'll need to add a repository (See available packages in
https://launchpad.net/~andrewfenn/+archive/ogredev):
$ sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 6FED7057
See https://launchpad.net/+help/soyuz/ppa-sources-list.html on how to add
the following PPA repository:
* [9.04 - Jaunty]
deb http://ppa.launchpad.net/andrewfenn/ogredev/ubuntu jaunty main
deb-src http://ppa.launchpad.net/andrewfenn/ogredev/ubuntu jaunty main
* [8.10 - Intrepid]
deb http://ppa.launchpad.net/andrewfenn/ogredev/ubuntu intrepid main
deb-src http://ppa.launchpad.net/andrewfenn/ogredev/ubuntu intrepid main
* [8.04 - Hardy]
deb http://ppa.launchpad.net/andrewfenn/ogredev/ubuntu hardy main
deb-src http://ppa.launchpad.net/andrewfenn/ogredev/ubuntu hardy main
Install dependencies:
$ sudo apt-get install libois-dev libcegui-dev libogre-dev \
libboost1.37-dev \
scons
1.1.2 Archlinux
Packages are available in AUR. The best way to install them is through
yaourt (note that other dependencies are installed automatically):
$ yaourt -S cegui ogre boost scons
1.1.3 Fedora [CG-toolkit not teste]
Fedora 11 provides the following packages:
OIS - 1.0
CEGUI - 1.6.2
ogre - 1.6.1
boost - 1.37
scons - 1.2.0
rpmfusion repository:
Nvidia CG Toolkit - 2.0.0015
Add rpmfusion repository:
$ sudo rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
$ sudo yum update
$ sudo yum install ois cegui ogre boost scons cg
1.2 From source
---------------
If your distro doesn't have packages for the dependencies listed above
(or if they are too old), you can install them from source. Below is a
quick and dirty guide to get them working. Refer to their websites for
more informations.
To compile CEGUI from source do:
$ ./configure --sysconfdir=/etc --enable-devil --enable-silly \
--disable-xerces-c --with-default-image-codec=SILLYImageCodec \
--disable-lua
$ make
# make install
To compile OIS from source code, download the latest version and do:
$ ./bootstrap
$ ./configure
$ make
# make install
To install ogre from source see
http://www.ogre3d.org/developers/subversion how to fetch the latest
svn version and compile it with (you'll need cmake):
$ cmake-gui
$ make
# make install
2. Compiling Trissa
===================
You have a bunch of options to choose when compiling Trissa. The default is to
compile with debug enabled. To disable it, pass mode=optimized option. See
scons --help for more options:
prefix: The install path "prefix"
default: /usr/local
actual: /usr/local
mode: Defines how Trissa will be built (optimized|optimized_thishost|debug)
default: debug
actual: debug
configfile: Path to configuration file ( /path/to/configfile )
default: /etc/trissa.conf
actual: /etc/trissa.conf
version: Auto-update version options (auto|release|keepold)
default: auto
actual: auto
enable_ui3d: Compile 3D interface (yes|no)
default: True
actual: True
Trissa is in development version. It's not a well self-contained package.
prefix and configfile options have no effects yet.
Mode options:
- debug: compile with debug flag on (you'll see a lot of output in
stdout/stderr) and with compiler flags to be able to use gdb to debug it
- optimized: it will compile without debugging symbols and with -O3
optimization
- optimized_thishost: it will detect optimization flags that your
processor supports and pass it to gcc (for example, SSE/MMX/...)
3. Intalling and running
========================
Do not install Trissa. It's not ready yet. Instead, run it inside the build
directories. Inside build directory, run ./trissa --help for options.