This commit is contained in:
2024-10-25 12:57:00 +02:00
parent c4608bb3c9
commit 653db9ab9b
3 changed files with 9 additions and 6 deletions

View File

@ -6,7 +6,7 @@ if (NOT TARGET imgui)
message("II using FetchContent imgui")
FetchContent_Declare(imgui
GIT_REPOSITORY https://github.com/ocornut/imgui.git
GIT_TAG 8199457 # v1.91.0
GIT_TAG cb16568 # v1.91.3
EXCLUDE_FROM_ALL
)
@ -32,6 +32,7 @@ if (NOT TARGET imgui)
)
target_include_directories(imgui PUBLIC ${imgui_SOURCE_DIR})
target_compile_features(imgui PUBLIC cxx_std_11)
target_compile_definitions(imgui PUBLIC IMGUI_USE_WCHAR32)
endif()
endif()