1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-20 01:34:20 +00:00
imgui/examples/example_null/CMakeLists.txt
2025-04-20 17:27:47 -07:00

9 lines
327 B
CMake

# Important: This is a "null backend" application, with no visible output or interaction!
# This is used for testing purpose and continuous integration, and has little use for end-user.
#
add_library(example_null STATIC)
target_sources(example_null PRIVATE main.cpp)
target_link_libraries(example_null PRIVATE imgui::imgui)