From aa4211d47773f7b2f3f20dad0166f9e30ff4c6d4 Mon Sep 17 00:00:00 2001 From: Peace Sells Date: Fri, 19 Jun 2015 21:40:38 -0600 Subject: Hide projects folder. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index fbb3ba6cb4..613eff442a 100644 --- a/.gitignore +++ b/.gitignore @@ -281,3 +281,5 @@ cscope.out cscope.in.out cscope.po.out godot.creator.* + +projects/ \ No newline at end of file -- cgit v1.2.3 From 6edbab0a9fed4a3ea9988b4054c42ce96a43d143 Mon Sep 17 00:00:00 2001 From: Peace Sells Date: Sun, 24 May 2015 01:04:26 -0600 Subject: Setting build vs properties in scons. --- SConstruct | 5 +++++ 1 file changed, 5 insertions(+) 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'] -- cgit v1.2.3