mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
897edc10c0
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38691 a592a061-630c-0410-9148-cb99ea01b6c8
24 lines
512 B
CMake
24 lines
512 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_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
|
|
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})
|
|
|