-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
45 lines (34 loc) · 1.3 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
cppcollada is a program for rendering COLLADA dae files.
Currently only basic features are supported and there is no optimization. Simple triangle based meshes with textures work.
Building
========
cppcollada uses the scons build system
apt-get install scons
To make:
scons
To install:
scons install
To compile debug version:
scons debug=1
To compile using llvm:
scons clang=1 boost=1
The folowing libraries are used:
cmake
libglew1.5-dev - OpenGL extentions.
glm - For OpenGL Matrix functions.
libdevil-dev - For texture loading.
libxerces-c-dev - XML parsing.
libqt4-dev - For the QT interface.
libqt4-opengl-dev
libnoise-dev - Use for an experiment using noise for random level generation.
libsdl1.2-dev
To install them in Ubuntu (except for GLM which much be done manually):
sudo apt-get install cmake libglew1.5-dev libdevil-dev libxerces-c-dev libqt4-dev libqt4-opengl-dev libnoise-dev libsdl1.2-dev
Notes
=====
HTML5 Logo from W3 under CC-by license: http://www.w3.org/html/logo/
3rd party CMAKE modules used:
http://nvidia-texture-tools.googlecode.com/svn/trunk/cmake/FindGLEW.cmake
http://geant4.cern.ch/support/source/geant4.9.4/cmake/Modules/FindXercesC.cmake
https://github.com/fador/mineserver/blob/master/CMakeModules/FindNoise.cmake
GetGitRevisionDescription: https://github.com/rpavlik/cmake-modules