11 lines
201 B
CMake
11 lines
201 B
CMake
|
project(imgui_sfml_example
|
||
|
LANGUAGES CXX
|
||
|
)
|
||
|
|
||
|
add_executable(imgui_sfml_example
|
||
|
main.cpp
|
||
|
${IMGUI_DEMO_SOURCES}
|
||
|
)
|
||
|
|
||
|
target_link_libraries(imgui_sfml_example PRIVATE ImGui-SFML::ImGui-SFML)
|