Splitting into separate files.

This commit is contained in:
2025-11-28 00:24:53 -08:00
parent d9777c9f02
commit 4db6077738
13 changed files with 1287 additions and 389 deletions

View File

@@ -20,7 +20,14 @@ endif()
include(GNUInstallDirs)
# Add executable
add_executable(ke main.c)
add_executable(ke
main.c
abuf.c
term.c
buffer.c
core.c
core.h
)
target_compile_definitions(ke PRIVATE KE_VERSION="ke version ${KE_VERSION}")
install(TARGETS ke RUNTIME DESTINATION bin)
install(FILES ke.1 TYPE MAN)