From: <al...@us...> - 2006-07-24 13:37:10
|
Revision: 535 Author: allenb Date: 2006-07-24 06:37:05 -0700 (Mon, 24 Jul 2006) ViewCVS: http://svn.sourceforge.net/xml-cppdom/?rev=535&view=rev Log Message: ----------- Use platform specific sconf and sconsign filenames to allow for building cross-platform out of same directory. Modified Paths: -------------- trunk/SConstruct Modified: trunk/SConstruct =================================================================== --- trunk/SConstruct 2006-07-24 00:39:18 UTC (rev 534) +++ trunk/SConstruct 2006-07-24 13:37:05 UTC (rev 535) @@ -51,7 +51,7 @@ EnsureSConsVersion(0,96) #SourceSignatures('MD5') #SourceSignatures('timestamp') -SConsignFile() +SConsignFile('.sconsign.'+GetPlatform()) # Figure out what version of CppDom we're using CPPDOM_VERSION = GetCppDomVersion() @@ -69,6 +69,8 @@ else: common_env = Environment(ENV = os.environ) SConsAddons.Builders.registerSubstBuilder(common_env) +common_env["CONFIGUREDIR"] = '.sconf_temp_'+platform +common_env["CONFIGURELOG"] = 'sconf.log_'+platform # Create variant helper and builder variant_helper = sca_variants.VariantsHelper() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |