https://github.com/overminddl1/sfml-testing
https://github.com/overminddl1/sfml-testing
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/overminddl1/sfml-testing
- Owner: OvermindDL1
- Created: 2018-06-16T01:09:57.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-16T01:19:44.000Z (about 8 years ago)
- Last Synced: 2025-01-21T18:51:29.386Z (over 1 year ago)
- Language: C++
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Testing example project for minimal setting up of SFML 2.5 in CMake
### Steps
Adjust steps as appropriate for what is wanted.
First git clone it:
```zsh
git clone --recursive https://github.com/OvermindDL1/sfml-testing.git
cd sfml-testing
```
Then make a build:
```zsh
cmake -H. -B_builds -DCMAKE_BUILD_TYPE=Release
```
Then build it:
```zsh
cmake --build _builds
```
Then run it (just a pure black OpenGL window that exits when the window is closed):
```zsh
./_builds/sfml-testing
```