sdl3_image_src/
lib.rs

1#![no_std]
2#![doc = include_str!("../README.md")]
3
4/// Location of the SDL3_image source code
5#[cfg(not(windows))]
6pub const SOURCE_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/SDL_image");
7#[cfg(windows)]
8pub const SOURCE_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "\\SDL_image");
9
10/// Revision
11pub const REVISION: &str = "SDL3_image-release-3.2.4";
12
13/// Version part of the revision
14pub const VERSION: &str = "3.2.4";
15
16/// Tag part of the revision
17pub const REVISION_TAG: &str = "release-3.2.4";
18
19/// Tag part of the revision without version
20pub const REVISION_TAG_BASE: &str = "release";
21
22/// Offset from tag part of the revision
23pub const REVISION_OFFSET: &str = "0";
24
25/// Hash part of the revision
26pub const REVISION_HASH: &str = "g11154afb";