From: Lars Gullik Bjønnes Date: Fri, 12 May 2006 13:29:30 +0000 (+0000) Subject: Remove the SConscript files in boost. X-Git-Tag: 1.6.10~13234 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=7192c8fd37f7766dd1c5ddeec293f42d0adc0714;p=lyx.git Remove the SConscript files in boost. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13836 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/boost/libs/SConscript b/boost/libs/SConscript deleted file mode 100644 index 87b3be25aa..0000000000 --- a/boost/libs/SConscript +++ /dev/null @@ -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=""') -# 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') diff --git a/boost/libs/filesystem/src/SConscript b/boost/libs/filesystem/src/SConscript deleted file mode 100644 index a61bbe8f14..0000000000 --- a/boost/libs/filesystem/src/SConscript +++ /dev/null @@ -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') diff --git a/boost/libs/iostreams/src/SConscript b/boost/libs/iostreams/src/SConscript deleted file mode 100644 index 8cc16106b9..0000000000 --- a/boost/libs/iostreams/src/SConscript +++ /dev/null @@ -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') diff --git a/boost/libs/regex/src/SConscript b/boost/libs/regex/src/SConscript deleted file mode 100644 index 021bae8533..0000000000 --- a/boost/libs/regex/src/SConscript +++ /dev/null @@ -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') diff --git a/boost/libs/signals/src/SConscript b/boost/libs/signals/src/SConscript deleted file mode 100644 index e3b9f8c4b9..0000000000 --- a/boost/libs/signals/src/SConscript +++ /dev/null @@ -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')