xmake option

This commit is contained in:
programsnail 2024-06-29 23:50:21 +03:00
parent 6a251945e6
commit 8a487d954c
3 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
src
build

1
.ignore Normal file
View file

@ -0,0 +1 @@
build

6
xmake.lua Normal file
View file

@ -0,0 +1,6 @@
set_languages("c++20")
target("tree-sitter-lang")
set_kind("static")
add_includedirs("src/tree-sitter")
add_files("src/*.c")