ladybird/Userland/Libraries/LibRegex/CMakeLists.txt
Timothy Flynn d485cf29d7 LibRegex+LibUnicode: Begin implementing Unicode property escapes
This supports some binary property matching. It does not support any
properties not yet parsed by LibUnicode, nor does it support value
matching (such as Script_Extensions=Latin).
2021-07-30 21:26:31 +01:00

10 lines
198 B
CMake

set(SOURCES
C/Regex.cpp
RegexByteCode.cpp
RegexLexer.cpp
RegexMatcher.cpp
RegexParser.cpp
)
serenity_lib(LibRegex regex)
target_link_libraries(LibRegex LibC LibCore LibUnicode)