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

Add minimal CMake setup for simplicity

This commit is contained in:
Pinwhell 2024-09-17 03:57:56 -04:00
parent e8eb8975a4
commit 63cd4d95a3
7 changed files with 35 additions and 0 deletions

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

@ -0,0 +1,3 @@
add_library(imgui-cpp STATIC)
target_sources(imgui-cpp PUBLIC imgui_stdlib.cpp)
target_include_directories(imgui-cpp PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} PRIVATE ${IMGUI_INC_DIR})