Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

c-vt-cmake

Demonstrates consuming libghostty-vt from a CMake project using FetchContent. Creates a terminal, writes VT sequences into it, and formats the screen contents as plain text.

Building

cd example/c-vt-cmake
cmake -B build
cmake --build build
./build/c_vt_cmake

To build against a local checkout instead of fetching from GitHub:

cmake -B build -DFETCHCONTENT_SOURCE_DIR_GHOSTTY=../..
cmake --build build