From fd9b762106f1221eee253abf33360e5f16aacabc Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 25 Dec 2023 08:45:47 +0100 Subject: [PATCH] moved animlib to thirdparty folder. --- src/CMakeLists.txt | 2 +- src/common/{textures => thirdparty}/animlib.cpp | 0 src/common/{textures => thirdparty}/animlib.h | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename src/common/{textures => thirdparty}/animlib.cpp (100%) rename src/common/{textures => thirdparty}/animlib.h (100%) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 263186315..e43ab843c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -987,6 +987,7 @@ set (PCH_SOURCES common/2d/v_drawtext.cpp common/2d/v_draw.cpp common/2d/wipe.cpp + common/thirdparty/animlib.cpp common/thirdparty/gain_analysis.cpp common/thirdparty/sfmt/SFMT.cpp common/startscreen/startscreen.cpp @@ -1015,7 +1016,6 @@ set (PCH_SOURCES common/textures/skyboxtexture.cpp common/textures/animtexture.cpp common/textures/v_collection.cpp - common/textures/animlib.cpp common/textures/formats/automaptexture.cpp common/textures/formats/brightmaptexture.cpp common/textures/formats/buildtexture.cpp diff --git a/src/common/textures/animlib.cpp b/src/common/thirdparty/animlib.cpp similarity index 100% rename from src/common/textures/animlib.cpp rename to src/common/thirdparty/animlib.cpp diff --git a/src/common/textures/animlib.h b/src/common/thirdparty/animlib.h similarity index 100% rename from src/common/textures/animlib.h rename to src/common/thirdparty/animlib.h