Crate qinetic_dylib
source · [−]Expand description
Force to be dynamically linked for Qinetic.
Enabling dynamic linking.
The recommended way.
To enable dynamic linking use the --features qinetic/dynamic
flag, when using the cargo run
command:
cargo run --features qinetic/dynamic
The unrecommended way.
To enable dynamic linking inside of the Cargo.toml
file add the dynamic
feature to the qinetic dependency:
This is unrecommended because it requires you to remove this feature every time you want to create a
release build to avoid having to ship additional files with your game.
features = ["dynamic"]