tab completion is still running with raw strings and that has to be fixed in the future.
18 lines
257 B
CMake
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)
|