diff options
author | ocean (they/them) <anvilfolk@gmail.com> | 2023-08-29 17:56:25 -0400 |
---|---|---|
committer | ocean (they/them) <anvilfolk@gmail.com> | 2023-08-29 18:53:45 -0400 |
commit | bbafe14970cf2a101b8b04dbfafeeaa9ddfb5d4d (patch) | |
tree | f2e7c4ace1e8a4d4f671c83748e50d3cbe435d59 /methods.py | |
parent | cfe9cd5cae57a1b8c2a98a7ef68d78d7e54263b4 (diff) | |
download | redot-engine-bbafe14970cf2a101b8b04dbfafeeaa9ddfb5d4d.tar.gz |
Build system: add option for MSVC incremental linking.
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/methods.py b/methods.py index 7c1781d699..97e9026fea 100644 --- a/methods.py +++ b/methods.py @@ -874,6 +874,9 @@ def generate_vs_project(env, num_jobs, project_name="godot"): if env["precision"] == "double": common_build_postfix.append("precision=double") + if env["incremental_link"]: + common_build_postfix.append("incremental_link=yes") + result = " ^& ".join(common_build_prefix + [" ".join([commands] + common_build_postfix)]) return result |