aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeace Sells2015-05-24 01:04:26 -0600
committerPeace Sells2015-05-24 11:59:31 -0600
commitb459bc549698c9358050030519c487abb6882d8e (patch)
tree03075c973396cc152afc4109438739ed311672b1
parent5272853cdc1c37fc545c443370bf87642122f4cc (diff)
downloadgodot-b459bc549698c9358050030519c487abb6882d8e.tar.gz
godot-b459bc549698c9358050030519c487abb6882d8e.tar.zst
godot-b459bc549698c9358050030519c487abb6882d8e.zip
Setting build vs properties in scons.
-rw-r--r--SConstruct5
1 files changed, 5 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 11b35e0b4..a1a323830 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']