mirror of
https://github.com/godotengine/godot.git
synced 2024-11-24 13:12:42 +00:00
Visual Studio project creation bug fix
A bug in the /drivers SCons script was preventing files in the /drivers and some in the /thirdparty directories from being added to the VS project. This will only affect builds that use the 'vsproj=yes' option.
This commit is contained in:
parent
d40b1825fc
commit
4d5a87a422
5
drivers/SCsub
vendored
5
drivers/SCsub
vendored
@ -34,7 +34,12 @@ if env['tools']:
|
||||
SConscript("convex_decomp/SCsub")
|
||||
|
||||
if env['vsproj']:
|
||||
import os
|
||||
path = os.getcwd()
|
||||
# Change directory so the path resolves correctly in the function call.
|
||||
os.chdir("..")
|
||||
env.AddToVSProject(env.drivers_sources)
|
||||
os.chdir(path)
|
||||
|
||||
if env.split_drivers:
|
||||
env.split_lib("drivers")
|
||||
|
Loading…
Reference in New Issue
Block a user