diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-12 12:17:30 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-12 12:17:46 +0100 |
commit | 13d7c09125f8eec703d0a43a9a87fc8aa08f7319 (patch) | |
tree | 70fd643c429cea5c1f9362c2674511d17a53f3b5 /Userland/Libraries/LibLine/CMakeLists.txt | |
parent | dc28c07fa526841e05e16161c74a6c23984f1dd5 (diff) | |
download | serenity-13d7c09125f8eec703d0a43a9a87fc8aa08f7319.zip |
Libraries: Move to Userland/Libraries/
Diffstat (limited to 'Userland/Libraries/LibLine/CMakeLists.txt')
-rw-r--r-- | Userland/Libraries/LibLine/CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Userland/Libraries/LibLine/CMakeLists.txt b/Userland/Libraries/LibLine/CMakeLists.txt new file mode 100644 index 0000000000..41da2dee0b --- /dev/null +++ b/Userland/Libraries/LibLine/CMakeLists.txt @@ -0,0 +1,10 @@ +set(SOURCES + Editor.cpp + InternalFunctions.cpp + KeyCallbackMachine.cpp + SuggestionManager.cpp + XtermSuggestionDisplay.cpp +) + +serenity_lib(LibLine line) +target_link_libraries(LibLine LibC LibCore) |