feat!: update bindings

This commit is contained in:
ObserverOfTime
2025-05-09 10:06:33 +03:00
committed by Michael Hoffmann
parent 41a2e70241
commit 8b209bbb95
23 changed files with 337 additions and 114 deletions

10
bindings/c/tree-sitter-hcl.pc.in generated Normal file
View File

@@ -0,0 +1,10 @@
prefix=@CMAKE_INSTALL_PREFIX@
libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@
includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@
Name: tree-sitter-hcl
Description: @PROJECT_DESCRIPTION@
URL: @PROJECT_HOMEPAGE_URL@
Version: @PROJECT_VERSION@
Libs: -L${libdir} -ltree-sitter-hcl
Cflags: -I${includedir}

16
bindings/c/tree_sitter/tree-sitter-hcl.h generated Normal file
View File

@@ -0,0 +1,16 @@
#ifndef TREE_SITTER_HCL_H_
#define TREE_SITTER_HCL_H_
typedef struct TSLanguage TSLanguage;
#ifdef __cplusplus
extern "C" {
#endif
const TSLanguage *tree_sitter_hcl(void);
#ifdef __cplusplus
}
#endif
#endif // TREE_SITTER_HCL_H_