mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 05:44:58 +00:00
18 lines
374 B
Text
18 lines
374 B
Text
shared_library("LibRegex") {
|
|
output_name = "regex"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"RegexByteCode.cpp",
|
|
"RegexLexer.cpp",
|
|
"RegexMatcher.cpp",
|
|
"RegexOptimizer.cpp",
|
|
"RegexParser.cpp",
|
|
]
|
|
if (current_os == "serenity") {
|
|
sources += [ "C/Regex.cpp" ]
|
|
}
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibUnicode",
|
|
]
|
|
}
|