diff options
author | german77 <[email protected]> | 2023-10-17 23:00:27 -0600 |
---|---|---|
committer | Narr the Reg <[email protected]> | 2023-10-23 10:18:14 -0600 |
commit | 94836ba3b181370f6e96ae72bf494cd6db16a7b1 (patch) | |
tree | 1c9b79039b216dafa37a38b74a68bbce42ad0afa /externals/CMakeLists.txt | |
parent | db37e583ffea39a4d25a8eb3eeea0cf825ec6661 (diff) | |
download | yuzu-mainline-94836ba3b181370f6e96ae72bf494cd6db16a7b1.tar.gz yuzu-mainline-94836ba3b181370f6e96ae72bf494cd6db16a7b1.zip |
externals: stb: Add image write
Diffstat (limited to 'externals/CMakeLists.txt')
-rw-r--r-- | externals/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index b1fd3ac62..64b48fd7b 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -168,7 +168,7 @@ if (NOT TARGET LLVM::Demangle) add_library(LLVM::Demangle ALIAS demangle) endif() -add_library(stb stb/stb_dxt.cpp stb/stb_image.cpp stb/stb_image_resize.cpp) +add_library(stb stb/stb_dxt.cpp stb/stb_image.cpp stb/stb_image_resize.cpp stb/stb_image_write.cpp) target_include_directories(stb PUBLIC ./stb) add_library(bc_decoder bc_decoder/bc_decoder.cpp) |