diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-10-21 19:50:07 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-10-21 19:50:07 +0200 |
commit | 8b4903e733fc49c77bcb3cd3c6399f7132b17248 (patch) | |
tree | 69d69ff38ba84dbad88feef1cca35d538ec68f08 /Libraries/LibVT/Makefile | |
parent | c1f72e0bbf0450630cb2e02c7479780af3267c4c (diff) | |
download | serenity-8b4903e733fc49c77bcb3cd3c6399f7132b17248.zip |
LibVT: Move TerminalWidget from the Terminal app to here
It would be nice to be able to reuse this widget in other apps. :^)
Diffstat (limited to 'Libraries/LibVT/Makefile')
-rw-r--r-- | Libraries/LibVT/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Libraries/LibVT/Makefile b/Libraries/LibVT/Makefile index 2370a93b12..ba58d2af19 100644 --- a/Libraries/LibVT/Makefile +++ b/Libraries/LibVT/Makefile @@ -1,7 +1,8 @@ include ../../Makefile.common OBJS = \ - Terminal.o + Terminal.o \ + TerminalWidget.o LIBRARY = libvt.a DEFINES += -DUSERLAND |