mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
0cd8c03d17
This patch puts all projects into subfolders (at least for MSVS). In this way, there is a better overview (especially if the number of test projects will be increasing).
27 lines
662 B
CMake
27 lines
662 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()
|
|
|
|
set_target_properties(boost_signals PROPERTIES FOLDER "3rd_party")
|