From 979f4311fa0088ac60c2d0ffbbad3654e7fc0de9 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 9 Aug 2023 08:22:47 +0200 Subject: [PATCH] - moved stb_image.h to third party folder. --- src/CMakeLists.txt | 2 ++ src/common/{textures/formats => thirdparty/stb}/stb_image.h | 0 2 files changed, 2 insertions(+) rename src/common/{textures/formats => thirdparty/stb}/stb_image.h (100%) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b4d06f9ce6..b219020bec 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1252,6 +1252,7 @@ include_directories( common/cutscenes common/thirdparty/libsmackerdec/include common/thirdparty + common/thirdparty/stb common/textures common/textures/formats common/textures/hires @@ -1490,6 +1491,7 @@ source_group("Common\\Third Party" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_D source_group("Common\\Third Party\\Math" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/thirdparty/math/.+") source_group("Common\\Third Party\\RapidJSON" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/thirdparty/rapidjson/.+") source_group("Common\\Third Party\\SFMT" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/thirdparty/sfmt/.+") +source_group("Common\\Third Party\\stb" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/thirdparty/stb/.+") source_group("Utility" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/utility/.+") source_group("Utility\\Node Builder" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/utility/nodebuilder/.+") source_group("Utility\\Smackerdec" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/smackerdec/.+") diff --git a/src/common/textures/formats/stb_image.h b/src/common/thirdparty/stb/stb_image.h similarity index 100% rename from src/common/textures/formats/stb_image.h rename to src/common/thirdparty/stb/stb_image.h