diff options
author | Liam <byteslice@airmail.cc> | 2023-05-20 17:15:36 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-05-23 12:54:40 -0400 |
commit | 415c78b87c008f0d963679ea9bc06c8aa566b506 (patch) | |
tree | 11e6a5d2211a99660a48678059c703e849c06da3 /externals/CMakeLists.txt | |
parent | f82efe9f65c5fc7aa2bba88ae38e211b98590efd (diff) |
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) target_sources(demangle PRIVATE demangle/ItaniumDemangle.cpp) add_library(LLVM::Demangle ALIAS demangle) endif() + +add_library(stb STATIC) +target_include_directories(stb PUBLIC ./stb) +target_sources(stb PRIVATE stb/stb_dxt.cpp) |