mirror of https://github.com/Ivsucram/ivsemu.git
Static-link to SDL2
This small build configuration helps setting LLDB into Rust, as well as to release a compiled released version of the code.
This commit is contained in:
parent
3d694139f1
commit
5bf025439c
|
@ -1,5 +1,7 @@
|
|||
/target
|
||||
/.vscode
|
||||
Cargo.lock
|
||||
|
||||
/src/SDL2.dll
|
||||
/src/chip_8/roms
|
||||
*.sch8
|
||||
*.ch8
|
||||
*.dll
|
15
Cargo.toml
15
Cargo.toml
|
@ -6,8 +6,13 @@ edition = "2018"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
# crossterm = "0.19"
|
||||
# tui = { version = "0.15", default-features = false, features = ['crossterm'] }
|
||||
# druid = "0.7.0"
|
||||
sdl2 = "0.34.5"
|
||||
rand = "0.8.4"
|
||||
rand = "0.8.4"
|
||||
vulkano = "0.24.0"
|
||||
|
||||
[dependencies.sdl2]
|
||||
version = "0.34.5"
|
||||
features = ["bundled", "static-link"]
|
||||
|
||||
|
||||
[dependencies.gl]
|
||||
git = "https://github.com/bjz/gl-rs"
|
Binary file not shown.
|
@ -2,5 +2,4 @@ mod chip_8;
|
|||
|
||||
fn main() {
|
||||
chip_8::chip_8_base_interpreter::run();
|
||||
// println!("Hello Chip-8!");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue