]> git.lyx.org Git - lyx.git/blob - boost/libs/signals/src/SConscript
scons-based build system, by Bo Peng (ben.bob@gmail.com)
[lyx.git] / boost / libs / signals / src / SConscript
1 # vi:filetype=python:expandtab:tabstop=2:shiftwidth=2
2
3 # file SConscript
4 #
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7
8 # \author Bo Peng
9 # Full author contact details are available in file CREDITS.
10
11 Import('boostenv')
12
13 print 'Entering boost/libs/signals/src...'
14
15 signals = boostenv.StaticLibrary(
16   target = '$LOCALLIBPATH/boost_signals',
17   source = Split('''
18     connection.cpp
19     named_slot_map.cpp
20     signal_base.cpp
21     slot.cpp
22     trackable.cpp
23   ''')
24 )
25
26 # Return the library
27 Return('signals')