mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
7168ce58b5
* SConstruct: main SConstruct file * scons_utils.py: utility functions * qt4.py: qt4 support is not yet official, and I have to patch this file * src/SConscript * src/insets/SConscript * src/graphics/SConscript * src/mathed/SConscript * src/frontends/qt3/SConscript * src/frontends/qt4/SConscript * src/frontends/SConscript * src/frontends/controllers/SConscript * src/support/SConscript * src/client/SConscript * src/tex2lyx/SConscript * boost/libs/SConscript * boost/libs/signals/src/SConscript * boost/libs/filesystem/src/SConscript * boost/libs/iostreams/src/SConscript * boost/libs/regex/src/SConscript git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13807 a592a061-630c-0410-9148-cb99ea01b6c8
33 lines
675 B
Python
33 lines
675 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'
|
|
]
|
|
)
|
|
|
|
# Return boost libraries
|
|
Return('boost')
|