2023-05-16 19:22:46 +03:00
|
|
|
set(SOURCES
|
|
|
|
main.cpp
|
2024-10-13 21:56:59 +03:00
|
|
|
Alias.cpp
|
|
|
|
Builtin.cpp
|
|
|
|
CommandTypes.cpp
|
|
|
|
Execute.cpp
|
|
|
|
Input.cpp
|
|
|
|
Lexer.cpp
|
|
|
|
Token.cpp
|
|
|
|
TokenParser.cpp
|
2023-05-16 19:22:46 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(Shell ${SOURCES})
|
2024-06-19 04:20:23 +03:00
|
|
|
banan_link_library(Shell ban)
|
|
|
|
banan_link_library(Shell libc)
|
2023-05-16 19:22:46 +03:00
|
|
|
|
2024-06-20 14:32:05 +03:00
|
|
|
install(TARGETS Shell OPTIONAL)
|