ba2eff82ac
Mainly convert mainloop and audio thread into native code for performance increase. (Calling into JNI every frame was costy) The code was cleaned up quite a bit, but I may have introduced new bugs in this process :< Former-commit-id: fdbc21b5ab39f3d2e36647fd1177dc9a84a16980 Former-commit-id: ac765dbee8c994e1b69cc694846511837c2685b9
25 lines
693 B
TOML
25 lines
693 B
TOML
[package]
|
|
name = "rustboyadvance-sdl2"
|
|
version = "0.1.0"
|
|
authors = ["Michel Heily <michelheily@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
rustboyadvance-core = { path = "../../core/", features = ["elf_support"] }
|
|
sdl2 = { version = "0.33.0", features = ["image"] }
|
|
ringbuf = "0.2.2"
|
|
bytesize = "1.0.0"
|
|
clap = { version = "2.33", features = ["color", "yaml"] }
|
|
log = "0.4.8"
|
|
flexi_logger = { version = "0.14", features = ["colors"] }
|
|
bit = "^0.1"
|
|
spin_sleep = "0.3.7"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1"
|
|
|
|
[features]
|
|
debugger = ["rustboyadvance-core/debugger"]
|
|
gdb = ["rustboyadvance-core/gdb"]
|
|
arm7tdmi_dispatch_table = ["rustboyadvance-core/arm7tdmi_dispatch_table"]
|