mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
14 lines
261 B
CMake
14 lines
261 B
CMake
set(SOURCES
|
|
RegexByteCode.cpp
|
|
RegexLexer.cpp
|
|
RegexMatcher.cpp
|
|
RegexOptimizer.cpp
|
|
RegexParser.cpp
|
|
)
|
|
|
|
if(SERENITYOS)
|
|
list(APPEND SOURCES C/Regex.cpp)
|
|
endif()
|
|
|
|
serenity_lib(LibRegex regex)
|
|
target_link_libraries(LibRegex PRIVATE LibUnicode)
|