mirror of
https://github.com/RGBCube/serenity
synced 2025-06-13 17:12:07 +00:00
20 lines
322 B
CMake
20 lines
322 B
CMake
set(SOURCES
|
|
AST.cpp
|
|
Builtin.cpp
|
|
Formatter.cpp
|
|
Job.cpp
|
|
NodeVisitor.cpp
|
|
Parser.cpp
|
|
Shell.cpp
|
|
SyntaxHighlighter.cpp
|
|
)
|
|
|
|
serenity_lib(LibShell shell)
|
|
target_link_libraries(LibShell LibCore LibLine LibSyntax)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(Shell)
|
|
target_link_libraries(Shell LibShell)
|