mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 12:45:06 +00:00
16 lines
357 B
Text
16 lines
357 B
Text
shared_library("LibLine") {
|
|
output_name = "line"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibUnicode",
|
|
]
|
|
sources = [
|
|
"Editor.cpp",
|
|
"InternalFunctions.cpp",
|
|
"KeyCallbackMachine.cpp",
|
|
"SuggestionManager.cpp",
|
|
"XtermSuggestionDisplay.cpp",
|
|
]
|
|
}
|