diff options
author | Peace Sells <PeaceSells50@gmail.com> | 2015-05-24 01:04:26 -0600 |
---|---|---|
committer | Peace Sells <PeaceSells50@gmail.com> | 2015-06-21 14:21:24 -0600 |
commit | 6edbab0a9fed4a3ea9988b4054c42ce96a43d143 (patch) | |
tree | ead390949a6a527c0d65c365fc4315fae36fd284 | |
parent | aa4211d47773f7b2f3f20dad0166f9e30ff4c6d4 (diff) |
Setting build vs properties in scons.
-rw-r--r-- | SConstruct | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 11b35e0b4b..a1a3238305 100644 --- a/SConstruct +++ b/SConstruct @@ -360,6 +360,11 @@ if selected_platform in platform_list: AddToVSProject(env.scene_sources) AddToVSProject(env.servers_sources) AddToVSProject(env.tool_sources) + + #env['MSVS_VERSION']='9.0' + env['MSVSBUILDCOM'] = "scons platform=" + selected_platform + " target=" + env["target"] + " bits=" + env["bits"] + " tools=yes" + env['MSVSREBUILDCOM'] = "scons platform=" + selected_platform + " target=" + env["target"] + " bits=" + env["bits"] + " tools=yes" + env['MSVSCLEANCOM'] = "scons platform=" + selected_platform + " target=" + env["target"] + " bits=" + env["bits"] + " tools=yes" debug_variants = ['Debug|Win32']+['Debug|x64'] release_variants = ['Release|Win32']+['Release|x64'] |