mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
26 lines
595 B
CMake
26 lines
595 B
CMake
|
# This file is part of LyX, the document processor.
|
||
|
# Licence details can be found in the file COPYING.
|
||
|
#
|
||
|
# Copyright (c) 2006-2011 Peter Kümmel, <syntheticpp@gmx.net>
|
||
|
#
|
||
|
|
||
|
project(boost_signals)
|
||
|
|
||
|
set(boost_signals_sources
|
||
|
connection.cpp
|
||
|
named_slot_map.cpp
|
||
|
signal_base.cpp
|
||
|
slot.cpp
|
||
|
trackable.cpp
|
||
|
)
|
||
|
|
||
|
lyx_add_path(boost_signals_sources ${TOP_SRC_DIR}/boost/libs/signals/src)
|
||
|
|
||
|
if(NOT LYX_MERGE_FILES)
|
||
|
add_library(boost_signals STATIC ${boost_signals_sources})
|
||
|
else()
|
||
|
lyx_const_touched_files(_allinone boost_signals_sources)
|
||
|
add_library(boost_signals STATIC ${_allinone_files})
|
||
|
endif()
|
||
|
|