https://github.com/krc2000/sfml_imgui_template
https://github.com/krc2000/sfml_imgui_template
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/krc2000/sfml_imgui_template
- Owner: KRC2000
- Created: 2023-01-08T13:07:03.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-13T17:25:09.000Z (over 3 years ago)
- Last Synced: 2025-03-24T06:11:30.453Z (over 1 year ago)
- Language: C++
- Size: 594 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SFML_ImGui_template
## How to get started
1. Install sfml library on your linux machine: ```sudo apt install libsfml-dev```
2. Download this repo
3. Open downloaded repo folder with VS Code(with c/c++ plugin installed) and click run button\
OR \
if you don't use VS Code - open terminal, cd into the project folder, build it with the command:
```
g++ -fdiagnostics-color=always -g -I ./include/ ./*.cpp -lGL -lsfml-graphics -lsfml-window -lsfml-system -o ./executable
```
You can also remove .vscode folder from the project if you don't use VS Code to build the solution\
eliasdaler/imgui-sfml: https://github.com/eliasdaler/imgui-sfml \
ImGui library version used: 1.89.2\
