Support Overlays #2

Merged
jaby merged 48 commits from Overlay-The-Beginning_CDDrive into main 2023-04-22 09:38:32 +00:00
6 changed files with 28 additions and 3 deletions
Showing only changes of commit 660f4fe150 - Show all commits

View File

@ -1,4 +1,4 @@
set bin_projects=psxcdgen psxcdread psxcdgen_ex
set bin_projects=psxcdgen psxcdread psxcdgen_ex wslpath
set bin_linux_projects=cpp_out jaby_engine_fconv mkoverlay
set clean_projects=cdtypes
set clean_projects_linux=tool_helper

View File

@ -59,7 +59,7 @@
{
"id": "project",
"type": "pickString",
"options": ["cdtypes", "cpp_out", "jaby_engine_fconv", "mkoverlay", "psxcdgen", "psxcdgen_ex", "psxcdread", "tool_helper"],
"options": ["cdtypes", "cpp_out", "jaby_engine_fconv", "mkoverlay", "psxcdgen", "psxcdgen_ex", "psxcdread", "tool_helper", "wslpath"],
"description": "project to build"
},
{

View File

@ -1,6 +1,6 @@
[package]
name = "psxcdgen_ex"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -0,0 +1,8 @@
[package]
name = "wslpath"
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,14 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}

View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello Planschi");
}