fix vender/imgui fold to vender/ImGui

This commit is contained in:
2025-11-21 18:54:04 +08:00
parent e0e101b0a2
commit 69bdaaec2e
2 changed files with 3 additions and 1 deletions

View File

@ -11,12 +11,13 @@ add_subdirectory(vendor/glad EXCLUDE_FROM_ALL)
# imgui # imgui
set(IMGUI_DIR vendor/imgui) set(IMGUI_DIR vendor/ImGui)
include_directories(${IMGUI_DIR} ${IMGUI_DIR}/backends) include_directories(${IMGUI_DIR} ${IMGUI_DIR}/backends)
file(GLOB IMGUI_SOURCE file(GLOB IMGUI_SOURCE
${IMGUI_DIR}/*.cpp ${IMGUI_DIR}/*.cpp
${IMGUI_DIR}/backends/imgui_impl_opengl3.cpp ${IMGUI_DIR}/backends/imgui_impl_opengl3.cpp
${IMGUI_DIR}/backends/imgui_impl_glfw.cpp) ${IMGUI_DIR}/backends/imgui_impl_glfw.cpp)
# add imgui source # add imgui source
list(APPEND SRC_SOURCE ${IMGUI_SOURCE}) list(APPEND SRC_SOURCE ${IMGUI_SOURCE})

View File

@ -9,6 +9,7 @@
#include <Windows.h> #include <Windows.h>
#endif #endif
#include <cstdint>
#include <memory> #include <memory>
#include <vector> #include <vector>
#include <string> #include <string>