From: <rom...@us...> - 2006-05-14 08:15:13
|
Revision: 91 Author: roman_yakovenko Date: 2006-05-14 01:15:06 -0700 (Sun, 14 May 2006) ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=91&view=rev Log Message: ----------- adding central sconstruct file Added Paths: ----------- pyplusplus_dev/examples/pyboost_dev/sconstruct Added: pyplusplus_dev/examples/pyboost_dev/sconstruct =================================================================== --- pyplusplus_dev/examples/pyboost_dev/sconstruct (rev 0) +++ pyplusplus_dev/examples/pyboost_dev/sconstruct 2006-05-14 08:15:06 UTC (rev 91) @@ -0,0 +1,22 @@ +#! /usr/bin/python +# Copyright 2004 Roman Yakovenko. +# Distributed under the Boost Software License, Version 1.0. (See +# accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +import sys +sys.path.append( './../..' ) +import environment + +env = Environment( + LIBS=['boost_python'] + , LIBPATH=[ environment.boost.libs, environment.python.libs ] + , CPPPATH=[ environment.boost.include, environment.python.include ] + , SHLIBPREFIX='' + , SHLIBSUFFIX=environment.scons.suffix +) + +Export( 'env' ) +env.SConscript( ['pyboost/date_time/sconscript'] ) +env.SConscript( ['pyboost/crc/sconscript'] ) +env.SConscript( ['pyboost/random/sconscript'] ) \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |