Merge pull request #13056 from RoyBerube/master
Visual Studio project creation bug fix [ci skip]
This commit is contained in:
commit
a5939c2953
1 changed files with 5 additions and 0 deletions
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 a new issue