Files
banan-os/userspace/programs/Shell/CMakeLists.txt
Bananymous 8adc97980a Shell: rewrite the whole shell to use tokens instead of raw strings
tab completion is still running with raw strings and that has to be
fixed in the future.
2024-10-13 22:00:16 +03:00

18 lines
257 B
CMake

set(SOURCES
main.cpp
Alias.cpp
Builtin.cpp
CommandTypes.cpp
Execute.cpp
Input.cpp
Lexer.cpp
Token.cpp
TokenParser.cpp
)
add_executable(Shell ${SOURCES})
banan_link_library(Shell ban)
banan_link_library(Shell libc)
install(TARGETS Shell OPTIONAL)