diff options
author | Peace Sells <PeaceSells50@gmail.com> | 2015-05-24 01:04:26 -0600 |
---|---|---|
committer | Peace Sells <PeaceSells50@gmail.com> | 2015-05-24 11:59:31 -0600 |
commit | b459bc549698c9358050030519c487abb6882d8e (patch) | |
tree | 03075c973396cc152afc4109438739ed311672b1 | |
parent | 5272853cdc1c37fc545c443370bf87642122f4cc (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'] |