diff options
| author | 2023-05-20 17:15:36 -0400 | |
|---|---|---|
| committer | 2023-05-23 12:54:40 -0400 | |
| commit | 415c78b87c008f0d963679ea9bc06c8aa566b506 (patch) | |
| tree | 11e6a5d2211a99660a48678059c703e849c06da3 /externals/CMakeLists.txt | |
| parent | Merge pull request #10392 from danilaml/update-cubeb-again (diff) | |
| download | yuzu-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.txt | 4 |
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) |
| 141 | endif() | 141 | endif() |
| 142 | |||
| 143 | add_library(stb STATIC) | ||
| 144 | target_include_directories(stb PUBLIC ./stb) | ||
| 145 | target_sources(stb PRIVATE stb/stb_dxt.cpp) | ||