1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00
imgui/examples/example_glut_opengl2/CMakeLists.txt
2025-05-02 17:25:00 +02:00

11 lines
343 B
CMake

if (TARGET imgui-glut AND TARGET imgui-opengl2)
add_executable (imgui_example_glut_opengl2 main.cpp)
target_link_libraries (imgui_example_glut_opengl2
imgui-glut imgui-opengl2
)
set_target_properties (imgui_example_glut_opengl2
PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${IMGUI_EXAMPLE_OUTPUT_DIR}"
)
endif ()