lyx_mirror/boost/libs/SConscript
Bo Peng 42155ade37 Fix scons/cygwin, add command line CC options, from Bo Peng (ben.bob@gmail.com)
* Modified files: SConstruct, src/SConscript, src/tex2lyx/SConscript, boost/libs/SConscript: 


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13820 a592a061-630c-0410-9148-cb99ea01b6c8
2006-05-09 20:04:27 +00:00

34 lines
692 B
Python

# vi:filetype=python:expandtab:tabstop=2:shiftwidth=2
# file SConscript
#
# This file is part of LyX, the document processor.
# Licence details can be found in the file COPYING.
#
# \author Bo Peng
# Full author contact details are available in file CREDITS.
Import('env')
# This will be used by all boost libraries
boostenv = env.Copy()
boostenv.Append(CCFLAGS = '-DBOOST_USER_CONFIG="<config.h>"')
# for config.h
boostenv.Append(CPPPATH = ['#src'])
Export('boostenv')
print "Entering boost/libs..."
boost = boostenv.SConscript(
dirs = [
'filesystem/src',
'iostreams/src',
'regex/src',
'signals/src'
],
duplicate = 0
)
# Return boost libraries
Return('boost')