Remove the SConscript files in boost.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13836 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2006-05-12 13:29:30 +00:00
parent df9bd2cc6d
commit 7192c8fd37
5 changed files with 0 additions and 142 deletions

View File

@ -1,33 +0,0 @@
# 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')

View File

@ -1,26 +0,0 @@
# 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('boostenv')
print 'Entering boost/libs/filesystem/src...'
filesystem = boostenv.StaticLibrary(
target = '$LOCALLIBPATH/boost_filesystem',
source = Split('''
convenience.cpp
exception.cpp
operations_posix_windows.cpp
path_posix_windows.cpp
''')
)
# Return the library
Return('filesystem')

View File

@ -1,25 +0,0 @@
# 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('boostenv')
print 'Entering boost/libs/iostreams/src...'
iostreams = boostenv.StaticLibrary(
target = '$LOCALLIBPATH/boost_iostreams',
source = Split('''
file_descriptor.cpp
mapped_file.cpp
zlib.cpp
''')
)
# Return the library
Return('iostreams')

View File

@ -1,31 +0,0 @@
# 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('boostenv')
print 'Entering boost/libs/regex/src...'
regex = boostenv.StaticLibrary(
target = '$LOCALLIBPATH/boost_regex',
source = Split('''
cpp_regex_traits.cpp
c_regex_traits.cpp
cregex.cpp
fileiter.cpp
instances.cpp
regex.cpp
regex_raw_buffer.cpp
regex_traits_defaults.cpp
w32_regex_traits.cpp
''')
)
# Return the library
Return('regex')

View File

@ -1,27 +0,0 @@
# 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('boostenv')
print 'Entering boost/libs/signals/src...'
signals = boostenv.StaticLibrary(
target = '$LOCALLIBPATH/boost_signals',
source = Split('''
connection.cpp
named_slot_map.cpp
signal_base.cpp
slot.cpp
trackable.cpp
''')
)
# Return the library
Return('signals')