mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +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
28 lines
565 B
Python
28 lines
565 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('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')
|