WID comments
[Lilanci.git] / README.txt
bloba00fd2acde6e140f268594ce44aaf51397d33c9a
1 This is basically a game strongly inspired by the game called Bulanci.
2 Graphics is SVG based rendered on load time by cairo and then drawn using
3 OpenGl.
4 Collisions are based on convex polygons.
5 It is rather proof of concept than a real game and so far one man show.
7 It's licensed under GPL.
9 It uses cmake 2.4 for managing the build process.
11 Build Requirements:
12         development versions of folowing libs:
13         sdl, sdl-mixer
14         cairo
15         librsvg-2
16         opengl - probably mesa
18 Debian Build Requirements:
19         libsdl-ttf2.0-dev
20         libsdl-mixer1.2-dev
21         libsdl-gfx1.2-dev
22         libsdl-sound1.2-dev
23         libcairo2-dev
24         librsvg2-dev
26 Compilation and run withouth install:
27         mkdir build
28         cd build
29         cmake .. -DINSTALLLESS='..'
30         make
31         ./elilanci
33 Compilation for install into /tmp/lilanci
34         mkdir build
35         cd build
36         cmake .. -DCMAKE_INSTALL_PREFIX=/tmp/lilanci
37         make
38         make install