Build system: add option for MSVC incremental linking.
This commit is contained in:
parent
cfe9cd5cae
commit
bbafe14970
2 changed files with 7 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue