https://github.com/hopson97/sfml-game-framework
Beginner framework for SFML games and other applications.
https://github.com/hopson97/sfml-game-framework
Last synced: about 1 year ago
JSON representation
Beginner framework for SFML games and other applications.
- Host: GitHub
- URL: https://github.com/hopson97/sfml-game-framework
- Owner: Hopson97
- License: mit
- Created: 2017-08-23T11:30:44.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-29T11:12:10.000Z (over 3 years ago)
- Last Synced: 2025-03-29T11:51:40.276Z (about 1 year ago)
- Language: C++
- Homepage:
- Size: 742 KB
- Stars: 146
- Watchers: 18
- Forks: 27
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sfml_framework
description here
## Building and Running
### Libraries
SFML is required.
These can be installed from your package manager. For example, on Debian/ Ubuntu:
```sh
sudo apt install libsfml-dev
```
If this is not possible (eg windows), you can install these manually from their respective websites:
https://www.sfml-dev.org/download.php
### Linux
To build, at the root of the project:
```sh
sh scripts/build.sh
```
To run, at the root of the project:
```sh
sh scripts/run.sh
```
To build and run in release mode, simply add the `release` suffix:
```sh
sh scripts/build.sh release
sh scripts/run.sh release
```