mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-27 14:29:21 +00:00
42155ade37
* 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
34 lines
692 B
Python
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')
|