From: <pat...@us...> - 2010-09-04 16:55:15
|
Revision: 663 http://xml-cppdom.svn.sourceforge.net/xml-cppdom/?rev=663&view=rev Author: patrickh Date: 2010-09-04 16:55:09 +0000 (Sat, 04 Sep 2010) Log Message: ----------- Merged the following revisions from the 1.0 branch: r661: Fixed the Windows build when using SCons 1.3.0. Submitted by: Ryan Pavlik r662: Removed build output that has not been relevant for a long time. Modified Paths: -------------- trunk/SConstruct Modified: trunk/SConstruct =================================================================== --- trunk/SConstruct 2010-09-04 16:53:31 UTC (rev 662) +++ trunk/SConstruct 2010-09-04 16:55:09 UTC (rev 663) @@ -8,7 +8,6 @@ import os, string, sys, re, glob, copy, types import os.path sys.path.insert(0, os.path.join('deps', 'scons-addons', 'src')) -print "NOTE: The build is currently in development. It needs the SVN trunk version of scons-addons" import SCons.Environment import SCons @@ -49,6 +48,7 @@ common_env = Environment(MSVS_VERSION = ARGUMENTS["MSVS_VERSION"]) else: common_env = Environment() + common_env["MSVS"] = {"VERSION" : common_env["MSVS_VERSION"]} print "Using MSVS version", common_env["MSVS"]["VERSION"] else: common_env = Environment(ENV = os.environ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |