diff options
Diffstat (limited to '')
-rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -5,3 +5,23 @@ ``` 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 +``` |