1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

SCons: Fix output with vsproj=yes

This commit is contained in:
Thaddeus Crews
2024-06-29 12:55:09 -05:00
parent 25de53e147
commit 8a24f44fe5
3 changed files with 15 additions and 7 deletions

View File

@@ -1040,9 +1040,9 @@ SConscript("platform/" + env["platform"] + "/SCsub") # Build selected platform.
# Microsoft Visual Studio Project Generation
if env["vsproj"]:
methods.generate_cpp_hint_file("cpp.hint")
env["CPPPATH"] = [Dir(path) for path in env["CPPPATH"]]
methods.generate_vs_project(env, ARGUMENTS, env["vsproj_name"])
methods.generate_cpp_hint_file("cpp.hint")
# Check for the existence of headers
conf = Configure(env)