diff options
author | Nao Pross <naopross@thearcway.org> | 2018-02-16 21:55:10 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2018-02-16 21:55:10 +0100 |
commit | bdf602f48194058d998909a233556cc57bac303e (patch) | |
tree | 20827387e7c7785329783b1168b0214fc7fc0f52 /README.md | |
parent | Merge branch 'dev' of ssh://git.thearcway.org:2222/naopross/subconscious into... (diff) | |
download | Subconscious-old-bdf602f48194058d998909a233556cc57bac303e.tar.gz Subconscious-old-bdf602f48194058d998909a233556cc57bac303e.zip |
Add cpack directive and update README
Diffstat (limited to 'README.md')
-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 +``` |