structure fixes, xmake, gitignore

This commit is contained in:
ProgramSnail 2024-10-31 00:54:04 +03:00
parent 23835d92fd
commit 6c39c65076
16 changed files with 1404 additions and 87 deletions

9
byterun/xmake.lua Normal file
View file

@ -0,0 +1,9 @@
add_rules("mode.debug", "mode.release")
set_languages("c23")
target("byterun")
set_kind("binary")
add_includedirs("include")
add_headerfiles("include/*.h")
add_files("src/*.c")