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
|
/target
|
||||||
|
/.vscode
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
|
||||||
/src/SDL2.dll
|
*.sch8
|
||||||
/src/chip_8/roms
|
*.ch8
|
||||||
|
*.dll
|
13
Cargo.toml
13
Cargo.toml
|
@ -6,8 +6,13 @@ edition = "2018"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[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() {
|
fn main() {
|
||||||
chip_8::chip_8_base_interpreter::run();
|
chip_8::chip_8_base_interpreter::run();
|
||||||
// println!("Hello Chip-8!");
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue