Revision: 1820
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1820&view=rev
Author: roman_yakovenko
Date: 2010-01-28 20:37:20 +0000 (Thu, 28 Jan 2010)
Log Message:
-----------
remove few scons warnings
Modified Paths:
--------------
pyplusplus_dev/unittests/sconstruct
Modified: pyplusplus_dev/unittests/sconstruct
===================================================================
--- pyplusplus_dev/unittests/sconstruct 2010-01-26 20:36:57 UTC (rev 1819)
+++ pyplusplus_dev/unittests/sconstruct 2010-01-28 20:37:20 UTC (rev 1820)
@@ -1,11 +1,11 @@
import os
import sys
-opts = Options( "options.txt", ARGUMENTS )
+vars = Variables()
-opts.Add( BoolOption( 'use_msvc71', 'use msvc71 compiler', False ) )
+vars.Add( BoolVariable( 'use_msvc71', 'use msvc71 compiler', False ) )
-env = Environment(options=opts)
+env = Environment(variables=vars)
if 'win32' in sys.platform:
if os.path.exists( r'E:\Program Files\Microsoft SDKs\Windows\v6.0A\Lib' ):
@@ -33,7 +33,7 @@
, 'varargs'
, 'templates'
, 'circular_references'
- , 'function_ptr_as_variable'
+ , 'function_ptr_as_variable'
, 'user_code'
, 'char_ptr_as_binary_data' ]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|