Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5299 igevorse 1
# 21 days: a game for programmers
2
 
3
## Features
4
 
5
* You start as a helpdesker.
6
* Work in a big company.
7
* Join a startup and launch a popular game (or not).
8
* Study new courses.
9
* Help your friends to repair their computer.
10
 
11
* With the help of quantum space–time folder you can do all of this in 21 days!
12
* Jump in time to change your choice and collect all achievements!
13
 
14
## License
15
 
16
21 days is licensed under GPL version 2.0. See COPYING in the same directory.
17
 
18
## Author
19
 
20
This program developed by Maxim Grishin (igevorse)
21
 
22
## Installation
23
 
24
This program does not require installation.
25
See "Run" section below.
26
 
27
## Run
28
 
29
Open your favourite file manager and run the executable file.
30
You can also use your shell:
31
 
32
* KolibriOS:
33
 
34
        21days
35
 
36
* Windows:
37
 
38
        cd bin
39
        21days
40
 
41
* Linux (you have to use a terminal supporting IBM866 code page(CP866)):
42
 
43
        cd bin
44
        ./21days
45
 
46
## Building from sources
47
 
48
If you want to build game from sources, you have to install GCC (Linux) and MinGW (Windows).
49
 
50
* KolibriOS
51
You have to install menuetlibc: see "Compilers GCC, G++." section at diamond.kolibrios.org/hll/hll_eng.htm.
52
To build a binary file for KolibriOS under Linux type in a terminal:
53
 
54
    make
55
 
56
Binary file would appear in current directory.
57
 
58
* Linux
59
To build a Linux binary file:
60
 
61
    make -f Makefile.linux
62
 
63
Binary files would appear in bin directory.
64
 
65
* Windows
66
To build a Windows binary file you have to install MinGW (http://sourceforge.net/projects/mingw/files/) with mingw32-base, mingw32-gcc and mingw-gcc-g++ packages.
67
Don't forget to add a path to a folder containing MinGW binary files to the Path environment variable ("C:\MinGW\bin" for me).
68
 
69
  * If you don't have MSYS installed:
70
 
71
      mingw32-make -f Makefile.win
72
 
73
  * If you have MSYS installed:
74
 
75
      make -f Makefile.linux
76
 
77
Binary files would appear in bin directory.
78
 
79
Have fun!