Skip to content

Commit

Permalink
use new flash features
Browse files Browse the repository at this point in the history
  • Loading branch information
matcool committed Feb 24, 2025
1 parent 9eb215f commit 3bdff36
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion flash.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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]
Expand Down

0 comments on commit 3bdff36

Please sign in to comment.