1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-09 23:54:20 +00:00
imgui/examples/example_glfw_metal/CMakeLists.txt
2025-05-02 17:25:00 +02:00

11 lines
332 B
CMake

if (TARGET imgui-glfw AND TARGET imgui-metal)
add_executable (imgui_example_glfw_metal main.mm)
target_link_libraries (imgui_example_glfw_metal
imgui-glfw imgui-metal
)
set_target_properties (imgui_example_glfw_metal
PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${IMGUI_EXAMPLE_OUTPUT_DIR}"
)
endif ()