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 /modules/navigation/SCsub | |
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 'modules/navigation/SCsub')
-rw-r--r-- | modules/navigation/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/navigation/SCsub b/modules/navigation/SCsub index 0b0822db2d..a9277657f4 100644 --- a/modules/navigation/SCsub +++ b/modules/navigation/SCsub @@ -10,7 +10,7 @@ env_navigation = env_modules.Clone() thirdparty_obj = [] # Recast Thirdparty source files -if env["builtin_recast"]: +if env["builtin_recastnavigation"]: thirdparty_dir = "#thirdparty/recastnavigation/Recast/" thirdparty_sources = [ "Source/Recast.cpp", |