aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 199e4bd9e6bd48bd7f8ee8c7ba7a410b18161b4c (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
# Dependencies

## Debian / Ubuntu
```
gradle libsfml-dev libtinyxml2-dev libboost-filesystem-dev
```

# Build
### With Gradle
```
gradle mainExecutable
```

### With CMake
On Debian the `libfsml-dev` package does not installs itself in
`/usr/share/cmake-x.x/Modules` and so it must be done manually.
```
sudo cp /usr/share/SFML/cmake/Modules/FindSFML.cmake \
        /usr/share/cmake-3.7/Modules
```

```
cd build
cmake ..
make
```