blob: f04ddbcba30c29102f9b178f358fdec94f05ca1b (
plain)
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
|
## Sokoban
A simple block pushing puzzle game Sokoban clone. This originally started out
life as a university assignment written in Java. Then at some point years
afterwards it seemed like a good idea to rewrite it in Ada using FLTK. I'm sure
I had a good reason.
#### Dependencies
Build time:
<ul>
<li>FLTKAda</li>
<li>gcc</li>
<li>GNAT</li>
<li>GPRbuild</li>
</ul>
Run time:
<ul>
<li>FLTKAda</li>
</ul>
#### Building and Installation
This repository is written to use the GNAT Project Manager build tools. To
build, use the following command
`gprbuild sokoban.gpr`
There is a single build switch of `-Xbuild` which can have a value of `release`
(the default) or `debug`.
If you want to install this project, use
`gprinstall -p -m sokoban.gpr`
For further information on the build tools, consult the
[GPRbuild docs](https://docs.adacore.com/gprbuild-docs/html/gprbuild_ug.html).
#### Credits and Licensing
Written by Jedidiah Barber.
Licensed under the Sunset License v1.0. For details see `license.txt`.
|