2011-05-10 17:44:41 +00:00
|
|
|
# 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_regex)
|
|
|
|
|
|
|
|
set(boost_regex_sources
|
|
|
|
cpp_regex_traits.cpp
|
|
|
|
c_regex_traits.cpp
|
|
|
|
cregex.cpp
|
|
|
|
fileiter.cpp
|
|
|
|
instances.cpp
|
|
|
|
regex.cpp
|
|
|
|
regex_raw_buffer.cpp
|
|
|
|
regex_traits_defaults.cpp
|
2011-11-20 20:10:26 +00:00
|
|
|
static_mutex.cpp
|
2011-05-10 17:44:41 +00:00
|
|
|
w32_regex_traits.cpp)
|
|
|
|
|
|
|
|
lyx_add_path(boost_regex_sources ${TOP_SRC_DIR}/boost/libs/regex/src)
|
|
|
|
|
|
|
|
add_library(boost_regex STATIC ${boost_regex_sources})
|
2012-10-22 16:12:29 +00:00
|
|
|
set_target_properties(boost_regex PROPERTIES FOLDER "3rd_party")
|
2011-05-10 17:44:41 +00:00
|
|
|
|