[pygccxml-commit] SF.net SVN: pygccxml: [944] pyplusplus_dev
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2007-03-04 20:41:10
|
Revision: 944 http://svn.sourceforge.net/pygccxml/?rev=944&view=rev Author: roman_yakovenko Date: 2007-03-04 12:41:03 -0800 (Sun, 04 Mar 2007) Log Message: ----------- fixing spelling errors Modified Paths: -------------- pyplusplus_dev/docs/documentation/multi_module_development.rest pyplusplus_dev/environment.py Modified: pyplusplus_dev/docs/documentation/multi_module_development.rest =================================================================== --- pyplusplus_dev/docs/documentation/multi_module_development.rest 2007-03-04 20:38:31 UTC (rev 943) +++ pyplusplus_dev/docs/documentation/multi_module_development.rest 2007-03-04 20:41:03 UTC (rev 944) @@ -8,11 +8,11 @@ Introduction ------------ -It is a common practices to construct final program or a package from few +It is a common practises to construct final program or a package from few different dependent or independent C++ libraries. Many time these libraries reuse classes\\functions defined in some other library. I think this is a must requirement from a code generator to be able to expose these libraries to `Python`_ , -without "re-exposing" the class\\functions definition twise. +without "re-exposing" the class\\functions definition twice. This functionality is new in version "0.8.6". Modified: pyplusplus_dev/environment.py =================================================================== --- pyplusplus_dev/environment.py 2007-03-04 20:38:31 UTC (rev 943) +++ pyplusplus_dev/environment.py 2007-03-04 20:41:03 UTC (rev 944) @@ -5,7 +5,7 @@ class boost: libs = '' include = '' - + class python: libs = '' include = '' @@ -18,9 +18,9 @@ cmd_build = '' cmd_clean = '' ccflags = [] - + if 'roman' in getpass.getuser(): - + scons.cmd_build = 'scons --file=%s' scons.cmd_clean = 'scons --clean --file=%s' @@ -34,7 +34,7 @@ gccxml.executable = r'd:/dev/gccxml_cvs/gccxml-bin/bin/release/gccxml.exe' else: scons.suffix = '.so' - boost.libs = [ '/home/roman/boost_cvs/libs/python/build/bin-stage' ] + boost.libs = ['/home/roman/boost_cvs/libs/python/build/bin-stage' ] boost.include = '/home/roman/boost_cvs' python.include = '/usr/include/python2.4' gccxml.executable = '/home/roman/gccxml/bin/gccxml' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |