mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 21:55: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 :^).
24 lines
509 B
Text
24 lines
509 B
Text
shared_library("LibMarkdown") {
|
|
output_name = "markdown"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"BlockQuote.cpp",
|
|
"CodeBlock.cpp",
|
|
"CommentBlock.cpp",
|
|
"ContainerBlock.cpp",
|
|
"Document.cpp",
|
|
"Heading.cpp",
|
|
"HorizontalRule.cpp",
|
|
"LineIterator.cpp",
|
|
"List.cpp",
|
|
"Paragraph.cpp",
|
|
"Table.cpp",
|
|
"Text.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibJS",
|
|
"//Userland/Libraries/LibRegex",
|
|
]
|
|
}
|