https://github.com/alexeykarnachev/crossover_2
https://github.com/alexeykarnachev/crossover_2
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexeykarnachev/crossover_2
- Owner: alexeykarnachev
- Created: 2024-04-05T11:30:54.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-10T11:01:30.000Z (about 1 year ago)
- Last Synced: 2024-04-10T12:24:27.385Z (about 1 year ago)
- Language: C++
- Size: 3.21 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Build ImGui
```bash
g++ -c \
./*.cpp ./backends/imgui_impl_opengl3.cpp ./backends/imgui_impl_glfw.cpp \
-I. -I../glfw-3.4/include \
&& ar rcs libimgui.a ./*.o \
&& rm ./*.o \
&& mv ./libimgui.a ../../../deps/lib/linux/libimgui.a
```