1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-02-06 04:20:08 +00:00
This commit is contained in:
Bruno Cabral 2025-10-08 16:14:51 +03:00 committed by GitHub
commit 73eb7d1a1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
41 changed files with 1506 additions and 189 deletions

View file

@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.23)
project(example_sdl2_vulkan)
# find_package(imgui REQUIRED)
add_executable(${PROJECT_NAME})
target_sources(${PROJECT_NAME} PRIVATE main.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE imgui::imgui imgui::backend_sdl2_vulkan)