[pygccxml-commit] SF.net SVN: pygccxml: [23] pyplusplus_dev/environment.py
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2006-04-30 05:51:25
|
Revision: 23 Author: roman_yakovenko Date: 2006-04-29 22:51:19 -0700 (Sat, 29 Apr 2006) ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=23&view=rev Log Message: ----------- Small change of unit tests configuration. The main reason is to allow other people to run unit tests on regular basis. Modified Paths: -------------- pyplusplus_dev/environment.py Modified: pyplusplus_dev/environment.py =================================================================== --- pyplusplus_dev/environment.py 2006-04-30 05:49:35 UTC (rev 22) +++ pyplusplus_dev/environment.py 2006-04-30 05:51:19 UTC (rev 23) @@ -30,12 +30,14 @@ boost.libs = 'd:/boost_cvs/bin' boost.include = 'd:/boost_cvs' python.libs = 'c:/python/libs' - python.include = 'c:/python/include' + python.include = 'c:/python/include' + gccxml.executable = 'c:/tools/gccxml/bin/gccxml.exe' else: scons.suffix = '.so' boost.libs = '/home/roman/boost_cvs/bin' boost.include = '/home/roman/boost_cvs' - python.include = '/usr/include/python2.4' + python.include = '/usr/include/python2.4' + gccxml.executable = '/home/roman/gccxml/bin/gccxml' _my_path = None @@ -43,7 +45,7 @@ import environment_path_helper environment_path_helper.raise_error() except Exception, error: - _my_path = os.path.split( sys.exc_traceback.tb_frame.f_code.co_filename )[0] + _my_path = os.path.abspath( os.path.split( sys.exc_traceback.tb_frame.f_code.co_filename )[0] ) try: import pygccxml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |