mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Linux: Allow unbundling brotli to use system library
This commit is contained in:
parent
b7c2fd2e9a
commit
153c4a4c4f
4 changed files with 9 additions and 5 deletions
|
@ -240,6 +240,9 @@ def configure(env: "Environment"):
|
|||
if not env["builtin_zstd"]:
|
||||
env.ParseConfig("pkg-config libzstd --cflags --libs")
|
||||
|
||||
if env["brotli"] and not env["builtin_brotli"]:
|
||||
env.ParseConfig("pkg-config libbrotlicommon libbrotlidec --cflags --libs")
|
||||
|
||||
# Sound and video libraries
|
||||
# Keep the order as it triggers chained dependencies (ogg needed by others, etc.)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue