1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:27:46 +00:00

Shell: Make 'editor' a member of Shell, and provide a LibShell

This commit is contained in:
AnotherTest 2020-09-23 09:06:30 +03:30 committed by Andreas Kling
parent e4bda2e1e7
commit b91be8b9fd
5 changed files with 137 additions and 130 deletions

View file

@ -6,8 +6,14 @@ set(SOURCES
NodeVisitor.cpp
Parser.cpp
Shell.cpp
)
serenity_lib(LibShell shell)
target_link_libraries(LibShell LibCore LibLine)
set(SOURCES
main.cpp
)
serenity_bin(Shell)
target_link_libraries(Shell LibCore LibLine)
target_link_libraries(Shell LibShell)