DDS library + ImageLoaderDds

This commit is contained in:
Vladyslav Baranovskyi
2024-12-08 22:57:45 +02:00
parent f6ee1de342
commit 412f9bb68c
5 changed files with 340 additions and 2 deletions

15
3rdParty/dds_image/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,15 @@
include(FetchContent)
if(NOT DEFINED DDS_IMAGE_REPO)
set(DDS_IMAGE_REPO https://github.com/spnda/dds_image.git)
endif ()
FetchContent_Declare(
dds_image
EXCLUDE_FROM_ALL
GIT_REPOSITORY ${DDS_IMAGE_REPO}
GIT_TAG main
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(dds_image)