https://github.com/hopson97/sfmlstarter
Starter framework for SFML based applications
https://github.com/hopson97/sfmlstarter
Last synced: 12 months ago
JSON representation
Starter framework for SFML based applications
- Host: GitHub
- URL: https://github.com/hopson97/sfmlstarter
- Owner: Hopson97
- Created: 2021-07-24T12:00:54.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-24T16:38:38.000Z (almost 5 years ago)
- Last Synced: 2025-01-17T13:48:29.125Z (over 1 year ago)
- Language: C++
- Size: 490 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SFML Starter
Starter framework for SFML based applications.
Features:
* Screen system for switching between states such as "Main Menu" and "In Game" screens
* Custom immediate mode GUI system
## Building and Running
## Building and Running
### Linux
Requires conan w/ bincrafters and cmake.
```sh
python3 -m pip install conan
conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
conan remote update bincrafters https://api.bintray.com/conan/bincrafters/public-conan
```
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
```