From 8b8d5750019f59512afc09ccf3eef560536e73f6 Mon Sep 17 00:00:00 2001 From: Lars Viklund Date: Tue, 26 Mar 2024 17:37:21 +0100 Subject: [PATCH] fix: re-add mismerged stb include in CMake While recovering the vcpkg-ports tree from an earlier commit via revert some unrelated changes slipped through despite auditing the merge and wasn't caught by an incremental rebuild. Re-add the include directory for the vendored stb libraries. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ba40ed..373faa5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -150,6 +150,7 @@ target_link_libraries(imgui PUBLIC target_include_directories(SimpleGraphic PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/dep/glad/include + ${CMAKE_CURRENT_SOURCE_DIR}/dep/stb ${JPEG_INCLUDE_DIR} )