From 75c4103572a15ee60acefcd6e8a730fc01983cde Mon Sep 17 00:00:00 2001 From: Ramoj naidu <143724619+Ramojinaidu@users.noreply.github.com> Date: Tue, 2 Dec 2025 13:09:26 +0530 Subject: [PATCH] Add CMake configuration for imgui library --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 000000000..8f299f7e2 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +file(GLOB IMGUI_SRC "*.cpp") + +add_library(imgui STATIC ${IMGUI_SRC}) + +target_include_directories(imgui PUBLIC $ + $)