diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-10 23:27:40 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-10 23:27:40 -0500 |
| commit | 0fb57c082c1362196e2abd09e9c37fdc818edd7c (patch) | |
| tree | 530c97107f6ae2679833be9ed6a36b2ecf348458 /graphics/Cargo.toml | |
| parent | use fmt fns directly when possible (diff) | |
| download | DungeonCrawl-0fb57c082c1362196e2abd09e9c37fdc818edd7c.tar.gz DungeonCrawl-0fb57c082c1362196e2abd09e9c37fdc818edd7c.tar.bz2 DungeonCrawl-0fb57c082c1362196e2abd09e9c37fdc818edd7c.zip | |
graphics: add feature to include assets statically in the binary
Diffstat (limited to 'graphics/Cargo.toml')
| -rw-r--r-- | graphics/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml index e898b04..0fe31d0 100644 --- a/graphics/Cargo.toml +++ b/graphics/Cargo.toml @@ -16,8 +16,9 @@ workspace = true [features] default = [] -wayland = ["raylib/GLFW_BUILD_WAYLAND", "raylib/wayland"] -sdl = ["raylib/sdl"] +wayland = ["raylib/wayland", "raylib/GLFW_BUILD_WAYLAND"] +sdl = ["raylib/sdl", "raylib/SUPPORT_MODULE_RTEXT"] +static = [] # Individual features seem to currently be # broken on windows |