├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake-testbuild.sh └── examples ├── imconfig_example ├── CMakeLists.txt ├── imconfig.h ├── imgui_impl_glfw.cpp ├── imgui_impl_glfw.h ├── main.cpp └── myvec.h ├── libs └── gl3w │ └── CMakeLists.txt ├── opengl3_example └── CMakeLists.txt └── opengl_example └── CMakeLists.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /out/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/README.md -------------------------------------------------------------------------------- /cmake-testbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/cmake-testbuild.sh -------------------------------------------------------------------------------- /examples/imconfig_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/examples/imconfig_example/CMakeLists.txt -------------------------------------------------------------------------------- /examples/imconfig_example/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/examples/imconfig_example/imconfig.h -------------------------------------------------------------------------------- /examples/imconfig_example/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/examples/imconfig_example/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /examples/imconfig_example/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/examples/imconfig_example/imgui_impl_glfw.h -------------------------------------------------------------------------------- /examples/imconfig_example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/examples/imconfig_example/main.cpp -------------------------------------------------------------------------------- /examples/imconfig_example/myvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/examples/imconfig_example/myvec.h -------------------------------------------------------------------------------- /examples/libs/gl3w/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/examples/libs/gl3w/CMakeLists.txt -------------------------------------------------------------------------------- /examples/opengl3_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/examples/opengl3_example/CMakeLists.txt -------------------------------------------------------------------------------- /examples/opengl_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamaskenez/imgui-cmake/HEAD/examples/opengl_example/CMakeLists.txt --------------------------------------------------------------------------------