Use cargo as a build system instead of makefiles

This commit is contained in:
2024-02-18 12:36:07 +01:00
parent e3c86e0e37
commit c05f984698
9 changed files with 39 additions and 10 deletions

13
Cargo.toml Normal file
View File

@@ -0,0 +1,13 @@
[package]
name = "test-raylib-rust"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[[bin]]
name = "rect"
path = "src/rect.rs"
[[bin]]
name = "bounce"
path = "src/bounce.rs"