1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:47:44 +00:00

Kernel: Port VirtualConsole to LibVT :^)

Unfortunately this drops the feature of preserving VGA buffer contents.

Resolves https://github.com/SerenityOS/serenity/issues/2399
This commit is contained in:
Sergey Bugaev 2020-05-27 00:35:14 +03:00 committed by Andreas Kling
parent 620697d924
commit f11270e7ce
6 changed files with 136 additions and 450 deletions

View file

@ -139,10 +139,16 @@ set(ELF_SOURCES
../Libraries/LibELF/Validation.cpp
)
set(VT_SOURCES
../Libraries/LibVT/Terminal.cpp
../Libraries/LibVT/Line.cpp
)
set(SOURCES
${KERNEL_SOURCES}
${AK_SOURCES}
${ELF_SOURCES}
${VT_SOURCES}
)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DKERNEL")