Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

9 lines
341 B
Plaintext

hello-imgui provides CMake integration:
set(CMAKE_CXX_STANDARD 17)
find_package(hello-imgui CONFIG REQUIRED)
# Usage with `hello_imgui_add_app` (recommended)
hello_imgui_add_app(main my_main.cpp)
# Usage with `target_link_libraries` (no tooling, no asset deployment)
target_link_libraries(main PRIVATE hello-imgui::hello_imgui)