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 :^).
12 lines
221 B
Text
12 lines
221 B
Text
shared_library("LibXML") {
|
|
output_name = "xml"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"DOM/Node.cpp",
|
|
"Parser/Parser.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
]
|
|
}
|