]> git.lyx.org Git - features.git/blob - development/cmake/boost/libs/regex/CMakeLists.txt
add copyright notice
[features.git] / development / cmake / boost / libs / regex / 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, Peter Kümmel, <syntheticpp@gmx.net>
5 #
6
7 project(boost_regex)
8
9 set(boost_regex_sources
10         cpp_regex_traits.cpp
11         c_regex_traits.cpp
12         cregex.cpp
13         fileiter.cpp
14         instances.cpp
15         regex.cpp
16         regex_raw_buffer.cpp
17         regex_traits_defaults.cpp
18         w32_regex_traits.cpp
19 )
20
21 lyx_add_path(boost_regex_sources ${TOP_SRC_DIR}/boost/libs/regex/src)
22
23 add_library(boost_regex STATIC ${boost_regex_sources})
24
25