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
|
#!/usr/bin/env cat
TABLE OF CONTENT:
Copyright and Copying
Information
How To Compile
Status
############################ Copyright and Copying #############################
Author:
Gustav Hartvigsson
E-Mail:
gustav.hartvigsson <at> gmail.com
This software is avaible under CreativeCommons, GPLv3, and LGPLv3.
lib/GameHelper/*: LGPLv3
lib/GameHelper.vapi: MIT/LGPLv3
lib/GameHelper.h: MIT/LGPLv3
src/*.vala: GPLv3
media/images/*: CC-BY-SA
media/fonts/*: Read media/fonts/README for information on
Copying, and Copyright
################################ Information ###################################
This is a game that is a personal research on how vala works and on shared
objects.
############################### How to compile #################################
first you need to compile the GameHelper library:
cd lib
make
That is all for that library...
Now the game itself:
cd ..
make
#################################### Status ####################################
This is game is under heavy development and should not be considerd as anything
else then what it is: a research project.
|