mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:37:35 +00:00
Meta: Add LibJS and its dependencies to gn build
This commit is contained in:
parent
1d3898f308
commit
165a67b115
5 changed files with 369 additions and 3 deletions
17
Meta/gn/secondary/Userland/Libraries/LibSyntax/BUILD.gn
Normal file
17
Meta/gn/secondary/Userland/Libraries/LibSyntax/BUILD.gn
Normal file
|
@ -0,0 +1,17 @@
|
|||
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",
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue