Merge Rust, C and C++ SDKs (#4)

* Generate native bindings from rust crate

* Add native instance and runtime statics

* Update README.md
This commit is contained in:
Guilherme Werner 2025-06-11 12:49:31 -03:00 committed by GitHub
parent 738f9c947b
commit a392dbb119
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 1213 additions and 24 deletions

31
premake5.lua Normal file
View file

@ -0,0 +1,31 @@
--- @diagnostic disable: undefined-global
workspace "tribufu"
location "."
configurations { "debug", "release" }
if _ACTION == "vs2022" then
platforms {
"win-arm64",
"win-x64",
"win-x86",
}
end
if _ACTION == "gmake2" then
platforms {
"linux-arm64",
"linux-x64",
"linux-x86",
}
end
if _ACTION == "xcode4" then
platforms {
"osx-arm64",
"osx-x64",
}
end
include "examples/c"
include "examples/cpp"