mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 11:45:06 +00:00
17 lines
329 B
Text
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",
|
|
]
|
|
}
|