ladybird/Shell/CMakeLists.txt
Andreas Kling 22dd5a7021 Shell: Move printing job status into a Job::print_status() helper
This is only used by the "jobs" builtin right now, but more soon.
2020-08-06 15:09:49 +02:00

12 lines
162 B
CMake

set(SOURCES
AST.cpp
Builtin.cpp
Job.cpp
Parser.cpp
Shell.cpp
main.cpp
)
serenity_bin(Shell)
target_link_libraries(Shell LibCore LibLine)