diff options
author | Bartłomiej T. Listwon <blistwon@gmail.com> | 2017-10-01 17:56:34 +0200 |
---|---|---|
committer | Bartłomiej T. Listwon <blistwon@gmail.com> | 2017-10-01 18:02:58 +0200 |
commit | bc870468f157d18f537ca3393fd38b1add640a4a (patch) | |
tree | 642f8fc861a71f2635a22a4f5b157e9d46ff2af5 | |
parent | 99a464ceb4da8558e35d933a30dbaba8025860d8 (diff) |
Fix scons: *** No SConstruct file found
Add --directory=$(ProjectDir) to build_commandline()
-rw-r--r-- | methods.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/methods.py b/methods.py index 2ab76a5416..f1ef95f6fe 100644 --- a/methods.py +++ b/methods.py @@ -1706,9 +1706,9 @@ def generate_vs_project(env, num_jobs): env.AddToVSProject(env.servers_sources) env.AddToVSProject(env.editor_sources) - env['MSVSBUILDCOM'] = build_commandline('scons platform=windows target=$(Configuration) tools=!tools! -j' + str(num_jobs)) - env['MSVSREBUILDCOM'] = build_commandline('scons platform=windows target=$(Configuration) tools=!tools! vsproj=yes -j' + str(num_jobs)) - env['MSVSCLEANCOM'] = build_commandline('scons --clean platform=windows target=$(Configuration) tools=!tools! -j' + str(num_jobs)) + env['MSVSBUILDCOM'] = build_commandline('scons --directory=$(ProjectDir) platform=windows target=$(Configuration) tools=!tools! -j' + str(num_jobs)) + env['MSVSREBUILDCOM'] = build_commandline('scons --directory=$(ProjectDir) platform=windows target=$(Configuration) tools=!tools! vsproj=yes -j' + str(num_jobs)) + env['MSVSCLEANCOM'] = build_commandline('scons --directory=$(ProjectDir) --clean platform=windows target=$(Configuration) tools=!tools! -j' + str(num_jobs)) # This version information (Win32, x64, Debug, Release, Release_Debug seems to be # required for Visual Studio to understand that it needs to generate an NMAKE |