https://github.com/seng3694/blackcircle
Small project for messing around with ImGui and SFML
https://github.com/seng3694/blackcircle
cmake cpp imgui imgui-sfml sfml
Last synced: 3 months ago
JSON representation
Small project for messing around with ImGui and SFML
- Host: GitHub
- URL: https://github.com/seng3694/blackcircle
- Owner: Seng3694
- License: mit
- Created: 2019-01-08T08:34:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-05T21:59:16.000Z (over 5 years ago)
- Last Synced: 2025-01-26T14:50:32.293Z (4 months ago)
- Topics: cmake, cpp, imgui, imgui-sfml, sfml
- Language: C++
- Homepage:
- Size: 3.27 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BlackCircle #
Small visually stimulating project I've created to mess around with [ImGui][1] and [SFML][2]. Also uses [ImGui-SFML][3].
![4]
## Build ##
This project uses [CMake][6] and [SFML 2.5][2].
1. Clone the repository
```
git clone https://github.com/Seng3694/BlackCircle
```2. Generate the build files
```
mkdir bin
cd bin
cmake -G "Your Generator" -DSFML_DIR="PATH_TO_SFML/lib/cmake/SFML" ../BlackCircle
```Notice the `SFML_DIR` parameter which must be set here. You could also edit the code locally and set the `SFML_DIR` in the [CMake file][7] before `find_package` is being called.
3. Build the files
```
cmake --build . --config Release
```## License ##
This Code is licensed under the MIT License. See [LICENSE][5] for more information.
[1]:https://github.com/ocornut/imgui
[2]:https://github.com/sfml/sfml
[3]:https://github.com/eliasdaler/imgui-sfml
[4]:resources/preview.gif
[5]:LICENSE
[6]:https://cmake.org
[7]:https://github.com/Seng3694/BlackCircle/blob/master/ext/imgui/CMakeLists.txt