summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-07-22 17:30:25 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-07-22 17:30:25 +0200
commit4e5ed0bbfb56f0a71eb61c868f965476652c23df (patch)
tree9850388da22aecf1de7cb66af2075e3ee876160f /SConstruct
parent84af5c1c46d2fa78816268c86d4f2e08e354b11c (diff)
parent8a24f44fe589dce4e88df8214ae96a0f4e16233b (diff)
downloadredot-engine-4e5ed0bbfb56f0a71eb61c868f965476652c23df.tar.gz
Merge pull request #93753 from Repiteo/scons/visual-studio-fixes
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 f3331f3b0d..7deafa7ecd 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1057,9 +1057,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)