blob: 27a8e08fccdaea8c4be172617ac612517054f7c1 (
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
|
# Dependencies
## Debian / Ubuntu
```
gradle libsfml-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
```
|