diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-16 12:15:16 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-16 15:52:13 +0100 |
commit | e2fc0acd36df57779ad2d914cac9b2f1848255cf (patch) | |
tree | b3f7460425d2ce407f0110e2ed63328d445824c5 /thirdparty/basis_universal | |
parent | 953383328af17e8c9fd6359285c12617cb22f636 (diff) |
Fix includes of thirdparty libs which can be unbundled on Linux
Changes `builtin_icu` and `builtin_recast` to match the folder names in
`thirdparty`.
Diffstat (limited to 'thirdparty/basis_universal')
-rw-r--r-- | thirdparty/basis_universal/encoder/basisu_comp.cpp | 2 | ||||
-rw-r--r-- | thirdparty/basis_universal/transcoder/basisu_transcoder.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/basis_universal/encoder/basisu_comp.cpp b/thirdparty/basis_universal/encoder/basisu_comp.cpp index 41eae2b78a..4e69e9e2ee 100644 --- a/thirdparty/basis_universal/encoder/basisu_comp.cpp +++ b/thirdparty/basis_universal/encoder/basisu_comp.cpp @@ -28,7 +28,7 @@ #endif #if BASISD_SUPPORT_KTX2_ZSTD -#include "../zstd/zstd.h" +#include <zstd.h> #endif // Set to 1 to disable the mipPadding alignment workaround (which only seems to be needed when no key-values are written at all) diff --git a/thirdparty/basis_universal/transcoder/basisu_transcoder.cpp b/thirdparty/basis_universal/transcoder/basisu_transcoder.cpp index 3aeba0ee7a..c698861f3b 100644 --- a/thirdparty/basis_universal/transcoder/basisu_transcoder.cpp +++ b/thirdparty/basis_universal/transcoder/basisu_transcoder.cpp @@ -155,7 +155,7 @@ // If BASISD_SUPPORT_KTX2_ZSTD is 0, UASTC files compressed with Zstd cannot be loaded. #if BASISD_SUPPORT_KTX2_ZSTD // We only use two Zstd API's: ZSTD_decompress() and ZSTD_isError() - #include "../zstd/zstd.h" + #include <zstd.h> #endif #endif |