summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-06-29 12:55:09 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-06-29 13:11:19 -0500
commit8a24f44fe589dce4e88df8214ae96a0f4e16233b (patch)
treea6f135b356c37c7e22d1edea0997885c82913cd2 /SConstruct
parent25de53e147a04ba15afc461b3ad4aa1884ff927d (diff)
downloadredot-engine-8a24f44fe589dce4e88df8214ae96a0f4e16233b.tar.gz
SCons: Fix output with `vsproj=yes`
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 3fabc4706f..aad9df9aa2 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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)