1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 11:45:06 +00:00
serenity/Meta/gn/secondary/Userland/Libraries/LibSyntax/BUILD.gn
2023-07-09 16:22:58 -06:00

17 lines
329 B
Text

shared_library("LibSyntax") {
output_name = "syntax"
include_dirs = [
"//Userland/Libraries",
# FIXME: Why does this library need to depend on WindowServer headers?
"//Userland",
]
sources = [
"Highlighter.cpp",
"Language.cpp",
]
deps = [
"//AK",
"//Userland/Libraries/LibUnicode",
]
}