Fix includes of thirdparty libs which can be unbundled on Linux

Changes `builtin_icu` and `builtin_recast` to match the folder names in
`thirdparty`.
This commit is contained in:
Rémi Verschelde
2023-02-16 12:15:16 +01:00
parent 953383328a
commit e2fc0acd36
11 changed files with 41 additions and 30 deletions

View File

@ -40,6 +40,9 @@ if not env.msvc:
else:
env_basisu.Prepend(CPPPATH=[thirdparty_dir])
if env["builtin_zstd"]:
env_basisu.Prepend(CPPPATH=["#thirdparty/zstd"])
if env.dev_build:
env_basisu.Append(CPPDEFINES=[("BASISU_DEVEL_MESSAGES", 1), ("BASISD_ENABLE_DEBUG_FLAGS", 1)])