diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-27 18:21:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-27 18:21:25 +0200 |
| commit | 72ab8ae0583ca9cf6c477a8c84eadd2b83991d02 (patch) | |
| tree | 9ce4ccc952333b138ad5df1e426a9d821c488c37 /platform | |
| parent | 1a43f55c0763e7961902b21880f918b11e3091b9 (diff) | |
| parent | 317c2b194d2a44f67f3cf42e5bb088343acfe033 (diff) | |
Merge pull request #42352 from Pineapple/add-all-headers-vs
Add all headers to Visual Studio Project
Diffstat (limited to 'platform')
| -rw-r--r-- | platform/windows/SCsub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/windows/SCsub b/platform/windows/SCsub index daffe59f34..e3f86977a4 100644 --- a/platform/windows/SCsub +++ b/platform/windows/SCsub @@ -26,10 +26,10 @@ prog = env.add_program("#bin/godot", common_win + res_obj, PROGSUFFIX=env["PROGS # Microsoft Visual Studio Project Generation if env["vsproj"]: - env.vs_srcs = env.vs_srcs + ["platform/windows/" + res_file] - env.vs_srcs = env.vs_srcs + ["platform/windows/godot.natvis"] + env.vs_srcs += ["platform/windows/" + res_file] + env.vs_srcs += ["platform/windows/godot.natvis"] for x in common_win: - env.vs_srcs = env.vs_srcs + ["platform/windows/" + str(x)] + env.vs_srcs += ["platform/windows/" + str(x)] if not os.getenv("VCINSTALLDIR"): if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]: |