This commit is contained in:
Davin Thompson 2025-04-01 16:34:44 +00:00 committed by GitHub
commit 33837b5c85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

8
CMakeLists.txt Normal file
View file

@ -0,0 +1,8 @@
CMAKE_MINIMUM_REQUIRED(VERSION 3.2)
project(imgui)
SET (LIB_TYPE STATIC)
add_library(imgui ${LIB_TYPE} imgui.cpp imgui_draw.cpp)
install(TARGETS imgui DESTINATION lib)
install(FILES imgui.h imconfig.h DESTINATION include)