https://github.com/floooh/oryol-imgui
Dear Imgui wrapper module for Oryol
https://github.com/floooh/oryol-imgui
dear-imgui fips imgui oryol
Last synced: 6 months ago
JSON representation
Dear Imgui wrapper module for Oryol
- Host: GitHub
- URL: https://github.com/floooh/oryol-imgui
- Owner: floooh
- License: mit
- Created: 2016-04-26T17:31:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-11-20T10:41:27.000Z (almost 7 years ago)
- Last Synced: 2025-03-25T22:41:26.138Z (7 months ago)
- Topics: dear-imgui, fips, imgui, oryol
- Language: C++
- Size: 22.5 KB
- Stars: 18
- Watchers: 2
- Forks: 12
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# oryol-imgui
'Dear Imgui' wrapper module for Oryol (https://github.com/ocornut/imgui)Oryol sample: https://floooh.github.com/oryol-samples/asmjs/ImGuiDemo.html
### How to integrate into your Oryol project:
First, add a new import to the fips.yml file of your project:
```yaml
imports:
oryol-imgui:
git:https://github.com/floooh/oryol-imgui.git
```Next, add a new dependency 'IMUI' to your app's CMakeLists.txt file:
```cmake
fips_begin_app(MyApp windowed)
...
fips_deps(IMUI)
fips_end_app()
```Run 'fips gen' to fetch the new dependencies and rebuild the build files:
```bash
> ./fips gen
...
```