mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 03:55:06 +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 :^).
16 lines
319 B
Text
16 lines
319 B
Text
shared_library("LibGemini") {
|
|
output_name = "gemini"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"Document.cpp",
|
|
"GeminiRequest.cpp",
|
|
"GeminiResponse.cpp",
|
|
"Job.cpp",
|
|
"Line.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibTLS",
|
|
]
|
|
}
|