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

add example CMake configuration

This commit is contained in:
Josh Junon 2020-02-16 18:52:12 +01:00 committed by ocornut
parent c0dfd65d67
commit 87f347be3f
27 changed files with 521 additions and 0 deletions

View file

@ -0,0 +1,6 @@
add_executable (imgui_example_null main.cpp)
target_link_libraries (imgui_example_null imgui)
set_target_properties (imgui_example_null
PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${IMGUI_EXAMPLE_OUTPUT_DIR}"
)