c5b9c68d5e
- Wrap static globals with a mutex. - Implement InputInterface Testing this on a standalone Java Console Application (without rendering) shows sufficiant performanse for now (AVG fps of 180 in the bios) Former-commit-id: cfbb9abb7e91b04258c41fc20e8a22c16d797386
22 lines
573 B
TOML
22 lines
573 B
TOML
[package]
|
|
name = "rustboyadvance-jni"
|
|
version = "0.1.0"
|
|
authors = ["Michel Heily <michelheily@gmail.com>"]
|
|
edition = "2018"
|
|
description = "JNI bindings for rustboyadvance core"
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "cdylib"]
|
|
|
|
[dependencies]
|
|
rustboyadvance-ng = {path = "../"}
|
|
jni = { version = "0.14", default-features = false }
|
|
log = {version = "0.4.8", features = ["release_max_level_info", "max_level_debug"]}
|
|
|
|
[target.'cfg(target_os="android")'.dependencies]
|
|
android_log = "0.1.3"
|
|
|
|
[target.'cfg(not(target_os="android"))'.dependencies]
|
|
env_logger = "0.7.1"
|