Initial commit

This commit is contained in:
2026-01-17 15:37:53 +01:00
commit ccd44c8172
31 changed files with 952 additions and 0 deletions

10
bindings/c/tree-sitter-mc.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-mc
Description: @PROJECT_DESCRIPTION@
URL: @PROJECT_HOMEPAGE_URL@
Version: @PROJECT_VERSION@
Libs: -L${libdir} -ltree-sitter-mc
Cflags: -I${includedir}

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

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