Fix Intellisense

Fix the CPPPATH passed to MSVSProject. Uses SCons Dir() function to convert "#" paths http://www.scons.org/doc/0.97/HTML/scons-user/a3414.html#CV-CPPPATH
This commit is contained in:
Bartłomiej T. Listwon 2017-10-09 11:43:08 +02:00
parent 4d1a55be2f
commit c871f50c55

View File

@ -409,6 +409,7 @@ if selected_platform in platform_list:
# Microsoft Visual Studio Project Generation
if (env['vsproj']) == "yes":
env['CPPPATH'] = [Dir(path) for path in env['CPPPATH']]
methods.generate_vs_project(env, env['vsproj_jobs'])
else: