sdl3_src/
lib.rs

1#![no_std]
2#![doc = include_str!("../README.md")]
3
4/// Location of the SDL 3 source code
5#[cfg(not(windows))]
6pub const SOURCE_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/SDL");
7#[cfg(windows)]
8pub const SOURCE_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "\\SDL");
9
10/// Revision
11pub const REVISION: &str = "SDL3-release-3.2.18";
12
13/// Version part of the revision
14pub const VERSION: &str = "3.2.18";
15
16/// Tag part of the revision
17pub const REVISION_TAG: &str = "release-3.2.18";
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 = "g68bfcb6c5";