mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 14:25:08 +00:00

There's a lot of them, and LibWeb is a massive set of files to build as well, so let's add these first :^).
23 lines
450 B
Text
23 lines
450 B
Text
# FIXME: Add serenity-only deps and sources
|
|
|
|
shared_library("LibGUI") {
|
|
output_name = "gui"
|
|
include_dirs = [
|
|
"//Userland/Libraries",
|
|
"//Userland",
|
|
]
|
|
sources = [
|
|
"GML/Lexer.cpp",
|
|
"GML/Parser.cpp",
|
|
"GML/SyntaxHighlighter.cpp",
|
|
"Icon.cpp",
|
|
"Model.cpp",
|
|
"ModelIndex.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibGfx",
|
|
"//Userland/Libraries/LibSyntax",
|
|
]
|
|
}
|