[pygccxml-commit] SF.net SVN: pygccxml: [790] pyplusplus_dev
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2006-12-10 07:16:58
|
Revision: 790 http://svn.sourceforge.net/pygccxml/?rev=790&view=rev Author: roman_yakovenko Date: 2006-12-09 23:16:59 -0800 (Sat, 09 Dec 2006) Log Message: ----------- updating environment to use new( to me ) boost directory layout Modified Paths: -------------- pyplusplus_dev/environment.py pyplusplus_dev/unittests/autoconfig.py Modified: pyplusplus_dev/environment.py =================================================================== --- pyplusplus_dev/environment.py 2006-12-10 07:15:29 UTC (rev 789) +++ pyplusplus_dev/environment.py 2006-12-10 07:16:59 UTC (rev 790) @@ -27,14 +27,14 @@ if sys.platform == 'win32': scons.suffix = '.pyd' scons.ccflags = ['/MD', '/EHsc', '/GR', '/Zc:wchar_t', '/Zc:forScope' ] - boost.libs = 'd:/dev/boost_cvs/bin' + boost.libs = [ 'd:/dev/boost_cvs/libs/python/build/bin-stage' ] boost.include = 'd:/dev/boost_cvs' python.libs = 'e:/python25/libs' python.include = 'e:/python25/include' gccxml.executable = r'd:/dev/gccxml_cvs/gccxml-bin/bin/release/gccxml.exe' else: scons.suffix = '.so' - boost.libs = '/home/roman/boost_cvs/bin' + boost.libs = [ '/home/roman/boost_cvs/bin' ] boost.include = '/home/roman/boost_cvs' python.include = '/usr/include/python2.4' gccxml.executable = '/home/roman/gccxml-build/bin/gccxml' Modified: pyplusplus_dev/unittests/autoconfig.py =================================================================== --- pyplusplus_dev/unittests/autoconfig.py 2006-12-10 07:15:29 UTC (rev 789) +++ pyplusplus_dev/unittests/autoconfig.py 2006-12-10 07:16:59 UTC (rev 790) @@ -20,7 +20,7 @@ class scons_config: libs = ['boost_python'] - libpath = [ boost.libs, python.libs ] + libpath = [ python.libs ] + boost.libs cpppath = [ boost.include, python.include ] include_dirs = cpppath + [data_directory] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |