Setting up skeleton project

This commit is contained in:
Evan Pratten 2022-03-16 16:21:11 -04:00
parent 0e8fb69050
commit 98f1370031
8 changed files with 72 additions and 0 deletions

14
.gitignore vendored Normal file
View File

@ -0,0 +1,14 @@
# Generated by Cargo
# will have compiled files and executables
debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

13
Cargo.toml Normal file
View File

@ -0,0 +1,13 @@
[workspace]
members = ["./game/game_logic", "./game/desktop_wrapper"]
exclude = [
"./third_party/raylib-rs/raylib",
"./third_party/raylib-rs/raylib-sys",
]
[profile.release]
lto = true
codegen-units = 1
[profile.dev]
split-debuginfo = "unpacked"

View File

@ -1,2 +1,13 @@
# ludum-dare-50
A game build over a weekend for Ludum Dare 50
## Cloning
**IMPORTANT:** This project makes use of recursive submodules. Make sure to pull them via GitKracken, or with the following command:
```sh
git submodule update --init --recursive
```
*Your builds will fail unless this is done*

View File

@ -1,3 +1,13 @@
# Here lives the code
This directory should contain game code and exported assets. No workfiles please :)
## Directory structure
- `./game_logic`
- Contains the actual game code
- `./desktop_wrapper`
- A tiny bit of code to initialize the game and run it
- Used to improve the speed of the Rust compiler

View File

@ -0,0 +1,9 @@
[package]
name = "desktop_wrapper"
publish = false
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,4 @@
fn main(){
}

View File

@ -0,0 +1,11 @@
[package]
name = "game_logic"
publish = false
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
raylib = {version="3.5", path="../../third_party/raylib-rs/raylib"}
# raylib = { version = "3.5", git = "https://github.com/ewpratten/raylib-rs", branch = "ludum-dare-50" }

View File