]> git.lyx.org Git - lyx.git/blob - boost/libs/signals/CMakeLists.txt
English UserGuide.lyx: make document compilable without PNGs
[lyx.git] / boost / libs / signals / CMakeLists.txt
1 # This file is part of LyX, the document processor.
2 # Licence details can be found in the file COPYING.
3 #
4 # Copyright (c) 2006-2011 Peter Kümmel, <syntheticpp@gmx.net>
5 #
6
7 project(boost_signals)
8
9 set(boost_signals_sources
10         connection.cpp 
11         named_slot_map.cpp 
12         signal_base.cpp 
13         slot.cpp 
14         trackable.cpp
15 )
16
17 lyx_add_path(boost_signals_sources ${TOP_SRC_DIR}/boost/libs/signals/src)
18
19 if(NOT LYX_MERGE_FILES)
20         add_library(boost_signals STATIC ${boost_signals_sources})
21 else()
22         lyx_const_touched_files(_allinone  boost_signals_sources)
23         add_library(boost_signals STATIC ${_allinone_files})
24 endif()
25
26 set_target_properties(boost_signals PROPERTIES FOLDER "3rd_party")