summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py3
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