diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
commit | b8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch) | |
tree | 1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /library/cpp/regex/pire | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) | |
download | ydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz |
Revert ymake build from ydb oss export
Diffstat (limited to 'library/cpp/regex/pire')
-rw-r--r-- | library/cpp/regex/pire/inline/ya.make | 17 | ||||
-rw-r--r-- | library/cpp/regex/pire/ut/ya.make | 39 | ||||
-rw-r--r-- | library/cpp/regex/pire/ya.make | 33 |
3 files changed, 0 insertions, 89 deletions
diff --git a/library/cpp/regex/pire/inline/ya.make b/library/cpp/regex/pire/inline/ya.make deleted file mode 100644 index fb6aab0839c..00000000000 --- a/library/cpp/regex/pire/inline/ya.make +++ /dev/null @@ -1,17 +0,0 @@ -PROGRAM(pire_inline) - -CFLAGS(-DPIRE_NO_CONFIG) - -PEERDIR( - ADDINCL library/cpp/regex/pire -) - -SRCDIR( - contrib/libs/pire/pire -) - -SRCS( - inline.l -) - -END() diff --git a/library/cpp/regex/pire/ut/ya.make b/library/cpp/regex/pire/ut/ya.make deleted file mode 100644 index 0e106cf6b33..00000000000 --- a/library/cpp/regex/pire/ut/ya.make +++ /dev/null @@ -1,39 +0,0 @@ -# this test in not linked into build tree with ReCURSE and is built by unittest/library - -UNITTEST() - -SET(PIRETESTSDIR contrib/libs/pire/ut) - -CFLAGS(-DPIRE_NO_CONFIG) - -PEERDIR( - library/cpp/regex/pire -) - -SRCDIR( - ${PIRETESTSDIR} -) - -ADDINCL( - contrib/libs/pire/pire - contrib/libs/pire/ut -) - -SRCS( - pire_ut.cpp - capture_ut.cpp - count_ut.cpp - glyph_ut.cpp - easy_ut.cpp - read_unicode_ut.cpp - regexp_ut.cpp - approx_matching_ut.cpp -) - -SIZE(MEDIUM) - -TIMEOUT(600) - -PIRE_INLINE(inline_ut.cpp) - -END() diff --git a/library/cpp/regex/pire/ya.make b/library/cpp/regex/pire/ya.make deleted file mode 100644 index b2579a73dff..00000000000 --- a/library/cpp/regex/pire/ya.make +++ /dev/null @@ -1,33 +0,0 @@ -LIBRARY() - -CFLAGS(-DPIRE_NO_CONFIG) - -SRCDIR(contrib/libs/pire/pire) - -SRCS( - pcre2pire.cpp - classes.cpp - encoding.cpp - fsm.cpp - scanner_io.cpp - easy.cpp - scanners/null.cpp - extra/capture.cpp - extra/count.cpp - extra/glyphs.cpp - re_lexer.cpp - re_parser.y - read_unicode.cpp - extraencodings.cpp - approx_matching.cpp - half_final_fsm.cpp - minimize.h -) - -PEERDIR( - library/cpp/charset -) - -END() - -RECURSE_FOR_TESTS(ut) |