You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Build system: add option for MSVC incremental linking.
(cherry picked from commit bbafe14970)
This commit is contained in:
committed by
Yuri Sizov
parent
d3265cf518
commit
cd2e003a05
@@ -871,6 +871,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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user