mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 13:35:09 +00:00
Added basic cmakelists.txt
This commit is contained in:
parent
b8043d3ee5
commit
671027ef2b
1 changed files with 8 additions and 0 deletions
8
CMakeLists.txt
Normal file
8
CMakeLists.txt
Normal 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)
|
Loading…
Add table
Reference in a new issue