aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/regex/ya.make
diff options
context:
space:
mode:
authoralexv-smirnov <alex@ydb.tech>2023-06-13 11:05:01 +0300
committeralexv-smirnov <alex@ydb.tech>2023-06-13 11:05:01 +0300
commitbf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch)
tree1d1df72c0541a59a81439842f46d95396d3e7189 /contrib/restricted/boost/regex/ya.make
parent8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff)
downloadydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz
add ymake export to ydb
Diffstat (limited to 'contrib/restricted/boost/regex/ya.make')
-rw-r--r--contrib/restricted/boost/regex/ya.make62
1 files changed, 62 insertions, 0 deletions
diff --git a/contrib/restricted/boost/regex/ya.make b/contrib/restricted/boost/regex/ya.make
new file mode 100644
index 0000000000..f53f6e4824
--- /dev/null
+++ b/contrib/restricted/boost/regex/ya.make
@@ -0,0 +1,62 @@
+# Generated by devtools/yamaker from nixpkgs 22.05.
+
+LIBRARY()
+
+LICENSE(BSL-1.0)
+
+LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
+
+VERSION(1.82.0)
+
+ORIGINAL_SOURCE(https://github.com/boostorg/regex/archive/boost-1.82.0.tar.gz)
+
+PEERDIR(
+ contrib/libs/icu
+ contrib/restricted/boost/assert
+ contrib/restricted/boost/concept_check
+ contrib/restricted/boost/config
+ contrib/restricted/boost/container_hash
+ contrib/restricted/boost/core
+ contrib/restricted/boost/integer
+ contrib/restricted/boost/mpl
+ contrib/restricted/boost/predef
+ contrib/restricted/boost/smart_ptr
+ contrib/restricted/boost/static_assert
+ contrib/restricted/boost/throw_exception
+ contrib/restricted/boost/type_traits
+)
+
+ADDINCL(
+ GLOBAL contrib/restricted/boost/regex/include
+)
+
+NO_COMPILER_WARNINGS()
+
+NO_UTIL()
+
+CFLAGS(
+ -DBOOST_HAS_ICU
+ -DBOOST_NO_CXX98_BINDERS
+)
+
+IF (DYNAMIC_BOOST)
+ CFLAGS(
+ GLOBAL -DBOOST_REGEX_DYN_LINK
+ )
+ENDIF()
+
+IF (OS_WINDOWS)
+ CFLAGS(
+ GLOBAL -DBOOST_REGEX_USE_CPP_LOCALE
+ )
+ENDIF()
+
+SRCS(
+ src/posix_api.cpp
+ src/regex.cpp
+ src/regex_debug.cpp
+ src/static_mutex.cpp
+ src/wide_posix_api.cpp
+)
+
+END()