mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 09:52:31 +00:00
14 lines
284 B
CMake
14 lines
284 B
CMake
set(SOURCES
|
|
RegexByteCode.cpp
|
|
RegexLexer.cpp
|
|
RegexMatcher.cpp
|
|
RegexOptimizer.cpp
|
|
RegexParser.cpp
|
|
)
|
|
|
|
if(SERENITYOS)
|
|
list(APPEND SOURCES C/Regex.cpp)
|
|
endif()
|
|
|
|
ladybird_lib(LibRegex regex EXPLICIT_SYMBOL_EXPORT)
|
|
target_link_libraries(LibRegex PRIVATE LibUnicode)
|