An opinionated set of "high level" wrappers for the fermium SDL2 bindings.
I attempt to make things as safe as is reasonable, without actually doing anything that would hurt the API design.
There are examples available if you want a sample of what things look like in practice.
Obviously this uses SDL2. You need version 2.0.9 or later:
-fPIC
flag enabled in your SDL2 install! This is necessary
because the build will static link to SDL2 by default.sudo
for a default install (to /usr/local/lib
)
or adjust it to fit your needs. Linux programmer are all pros, right?cargo clean
to make the build.rs
work.The fermium
bindings do a static compilation by default, so once you build
your program it won't need to be shipped with any extra files.
You'll probably want to set the window_subsystem to "windows" in your beryllium programs. Just add this to the top of the main file of any binary or example:
```rust
```
Note that we only want it enabled when debug_assertions
are not active. If
it's configured you don't have a default console at all so you can't print
debug messages. We only need to set it with the version we plan to ship to
users.
This line won't have any effect on the build outside Windows, so no worries.
This crate uses the Zlib license, the same license that SDL2 itself uses.
PLEASE DO NOT PR TO MASTER
All new development goes to a dev branch. Updates are only transferred to the master branch when it's time to do a new release.