summaryrefslogtreecommitdiff
path: root/externals/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Liam2023-05-20 17:15:36 -0400
committerGravatar Liam2023-05-23 12:54:40 -0400
commit415c78b87c008f0d963679ea9bc06c8aa566b506 (patch)
tree11e6a5d2211a99660a48678059c703e849c06da3 /externals/CMakeLists.txt
parentMerge pull request #10392 from danilaml/update-cubeb-again (diff)
downloadyuzu-415c78b87c008f0d963679ea9bc06c8aa566b506.tar.gz
yuzu-415c78b87c008f0d963679ea9bc06c8aa566b506.tar.xz
yuzu-415c78b87c008f0d963679ea9bc06c8aa566b506.zip
textures: add BC1 and BC3 compressors and recompression setting
Diffstat (limited to 'externals/CMakeLists.txt')
-rw-r--r--externals/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index f2a560f04..e59eeb489 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -139,3 +139,7 @@ if (NOT TARGET LLVM::Demangle)
139 target_sources(demangle PRIVATE demangle/ItaniumDemangle.cpp) 139 target_sources(demangle PRIVATE demangle/ItaniumDemangle.cpp)
140 add_library(LLVM::Demangle ALIAS demangle) 140 add_library(LLVM::Demangle ALIAS demangle)
141endif() 141endif()
142
143add_library(stb STATIC)
144target_include_directories(stb PUBLIC ./stb)
145target_sources(stb PRIVATE stb/stb_dxt.cpp)