1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-14 00:34:18 +00:00

add basic CMake implementation for integrating imgui in other CMake

projects or extensions of imgui depending on it.
This commit is contained in:
Tim Blume 2023-12-03 12:25:34 +01:00
parent 52886872f1
commit 256d5e5448
3 changed files with 145 additions and 0 deletions

3
misc/cpp/CMakeLists.txt Normal file
View file

@ -0,0 +1,3 @@
add_library(imgui_stdlib imgui_stdlib.cpp)
target_include_directories(imgui_stdlib PUBLIC .)
target_link_libraries(imgui_stdlib PUBLIC imgui)