|
@@ -0,0 +1,15 @@
|
|
|
+shared_library("LibLine") {
|
|
|
+ output_name = "line"
|
|
|
+ include_dirs = [ "//Userland/Libraries" ]
|
|
|
+ deps = [
|
|
|
+ "//AK",
|
|
|
+ "//Userland/Libraries/LibCore",
|
|
|
+ ]
|
|
|
+ sources = [
|
|
|
+ "Editor.cpp",
|
|
|
+ "InternalFunctions.cpp",
|
|
|
+ "KeyCallbackMachine.cpp",
|
|
|
+ "SuggestionManager.cpp",
|
|
|
+ "XtermSuggestionDisplay.cpp",
|
|
|
+ ]
|
|
|
+}
|