use new flash features

This commit is contained in:
matcool 2025-02-23 22:02:37 -03:00
parent 9eb215fda7
commit 3bdff36baf

View file

@ -4,7 +4,7 @@
[project]
name = "Geode"
version = "v3.0.0"
version = "" # dont bother
repository = "https://github.com/geode-sdk/geode"
tree = "https://github.com/geode-sdk/geode/tree/main"
icon = "loader/resources/logos/geode-circle.png"
@ -18,6 +18,14 @@ assets = [
"docs/assets/handbook/vol2/*.png",
]
[[external-libs]]
pattern = "matjson"
repository = "https://github.com/geode-sdk/json"
[[external-libs]]
pattern = "Result.hpp"
repository = "https://github.com/geode-sdk/result"
[[sources]]
name = "Geode"
dir = "loader/include"
@ -42,6 +50,23 @@ include = [
# Bindings are generated at compile time
exists-online = false
[ignore]
patterns-name = [
# anything that starts with a double underscore
# shouldnt be included
"^__",
"^tinyxml2$",
"^format_as$",
# operator overloads
"^operator\\W"
]
patterns-full = [
"^geode::modifier",
"^geode::prelude",
"^geode::stl",
"^geode::geode_internal"
]
# CMake options
[cmake]