libghostty
Loading...
Searching...
No Matches
c-vt-build-info/src/main.c

This example demonstrates how to query compile-time build configuration such as SIMD support, Kitty graphics, and tmux control mode availability.

#include <stdio.h>
#include <ghostty/vt.h>
void query_build_info() {
bool simd = false;
bool kitty_graphics = false;
bool tmux_control_mode = false;
printf("SIMD: %s\n", simd ? "enabled" : "disabled");
printf("Kitty graphics: %s\n", kitty_graphics ? "enabled" : "disabled");
printf("Tmux control mode: %s\n", tmux_control_mode ? "enabled" : "disabled");
GhosttyString version_string = {0};
size_t version_major = 0;
size_t version_minor = 0;
size_t version_patch = 0;
GhosttyString version_pre = {0};
GhosttyString version_build = {0};
printf("Version: %.*s\n", (int)version_string.len, version_string.ptr);
printf("Version major: %zu\n", version_major);
printf("Version minor: %zu\n", version_minor);
printf("Version patch: %zu\n", version_patch);
if (version_pre.len > 0) {
printf("Version pre : %.*s\n", (int)version_pre.len, version_pre.ptr);
} else {
printf("Version pre : (none)\n");
}
if (version_build.len > 0) {
printf("Version build: %.*s\n", (int)version_build.len, version_build.ptr);
} else {
printf("Version build: (none)\n");
}
}
int main() {
query_build_info();
return 0;
}
GHOSTTY_API GhosttyResult ghostty_build_info(GhosttyBuildInfo data, void *out)
@ GHOSTTY_BUILD_INFO_VERSION_PATCH
Definition build_info.h:109
@ GHOSTTY_BUILD_INFO_VERSION_PRE
Definition build_info.h:117
@ GHOSTTY_BUILD_INFO_TMUX_CONTROL_MODE
Definition build_info.h:74
@ GHOSTTY_BUILD_INFO_VERSION_STRING
Definition build_info.h:88
@ GHOSTTY_BUILD_INFO_VERSION_MAJOR
Definition build_info.h:95
@ GHOSTTY_BUILD_INFO_KITTY_GRAPHICS
Definition build_info.h:67
@ GHOSTTY_BUILD_INFO_SIMD
Definition build_info.h:60
@ GHOSTTY_BUILD_INFO_VERSION_BUILD
Definition build_info.h:125
@ GHOSTTY_BUILD_INFO_VERSION_MINOR
Definition build_info.h:102
size_t len
Definition types.h:198
const uint8_t * ptr
Definition types.h:195