move header into subdirectory

This commit is contained in:
Mitchell Hashimoto
2025-09-24 12:27:04 -07:00
parent 48827b21d8
commit 96e9053862
4 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
DOXYFILE_ENCODING = UTF-8 DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "libghostty" PROJECT_NAME = "libghostty"
INPUT = include/ghostty-vt.h INPUT = include/ghostty/vt.h
INPUT_ENCODING = UTF-8 INPUT_ENCODING = UTF-8
RECURSIVE = NO RECURSIVE = NO

View File

@@ -1,5 +1,5 @@
#include <stddef.h> #include <stddef.h>
#include <ghostty-vt.h> #include <ghostty/vt.h>
int main() { int main() {
GhosttyOscParser parser; GhosttyOscParser parser;

View File

@@ -1,5 +1,5 @@
/** /**
* @file ghostty-vt.h * @file vt.h
* *
* libghostty-vt - Virtual terminal sequence parsing library * libghostty-vt - Virtual terminal sequence parsing library
* *

View File

@@ -29,8 +29,8 @@ pub fn initShared(
.root_module = zig.vt, .root_module = zig.vt,
}); });
lib.installHeader( lib.installHeader(
b.path("include/ghostty-vt.h"), b.path("include/ghostty/vt.h"),
"ghostty-vt.h", "ghostty/vt.h",
); );
// Get our debug symbols // Get our debug symbols