├── CMakeLists.txt ├── LICENSE ├── README.md ├── dependencies └── CMakeLists.txt └── src ├── CMakeLists.txt ├── Install.cmake ├── PostInstall.cmake └── main.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/imgui-sfml-fetchcontent/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/imgui-sfml-fetchcontent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/imgui-sfml-fetchcontent/HEAD/README.md -------------------------------------------------------------------------------- /dependencies/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/imgui-sfml-fetchcontent/HEAD/dependencies/CMakeLists.txt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/imgui-sfml-fetchcontent/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/imgui-sfml-fetchcontent/HEAD/src/Install.cmake -------------------------------------------------------------------------------- /src/PostInstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/imgui-sfml-fetchcontent/HEAD/src/PostInstall.cmake -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/imgui-sfml-fetchcontent/HEAD/src/main.cpp --------------------------------------------------------------------------------