Creation of jaby_engine_fconv
This commit is contained in:
@@ -5,4 +5,8 @@ test_cpp_out: always
|
|||||||
@echo "Planschbecken" | ./../cpp_out/target/release/cpp_out --name Dino -o "Test_Planschbecken.cpp"
|
@echo "Planschbecken" | ./../cpp_out/target/release/cpp_out --name Dino -o "Test_Planschbecken.cpp"
|
||||||
@echo "Planschbecken" | ./../cpp_out/target/release/cpp_out --name Dino -o "Test_Planschbecken.hpp"
|
@echo "Planschbecken" | ./../cpp_out/target/release/cpp_out --name Dino -o "Test_Planschbecken.hpp"
|
||||||
|
|
||||||
|
test_jaby_engine_fconv: always
|
||||||
|
@cargo build --manifest-path ../jaby_engine_fconv/Cargo.toml --release
|
||||||
|
@./../jaby_engine_fconv/target/release/jaby_engine_fconv
|
||||||
|
|
||||||
always: ;
|
always: ;
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
{
|
{
|
||||||
"id": "project",
|
"id": "project",
|
||||||
"type": "pickString",
|
"type": "pickString",
|
||||||
"options": ["cdtypes", "cpp_out", "psxcdgen", "psxcdread", "tool_helper"],
|
"options": ["cdtypes", "cpp_out", "jaby_engine_fconv", "psxcdgen", "psxcdread", "tool_helper"],
|
||||||
"description": "project to build"
|
"description": "project to build"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
rem build_all [clean]
|
rem build_all [clean]
|
||||||
|
|
||||||
set bin_projects=psxcdgen psxcdread
|
set bin_projects=psxcdgen psxcdread
|
||||||
set bin_linux_projects=cpp_out
|
set bin_linux_projects=cpp_out jaby_engine_fconv
|
||||||
set clean_projects=cdtypes
|
set clean_projects=cdtypes
|
||||||
set clean_projects_linux=tool_helper
|
set clean_projects_linux=tool_helper
|
||||||
|
|
||||||
|
|||||||
10
src/Tools/jaby_engine_fconv/Cargo.toml
Normal file
10
src/Tools/jaby_engine_fconv/Cargo.toml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
[package]
|
||||||
|
name = "jaby_engine_fconv"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
clap = {version = "*", features = ["derive"]}
|
||||||
|
tool_helper = {path = "../tool_helper"}
|
||||||
8
src/Tools/jaby_engine_fconv/src/lib.rs
Normal file
8
src/Tools/jaby_engine_fconv/src/lib.rs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn it_works() {
|
||||||
|
let result = 2 + 2;
|
||||||
|
assert_eq!(result, 4);
|
||||||
|
}
|
||||||
|
}
|
||||||
3
src/Tools/jaby_engine_fconv/src/main.rs
Normal file
3
src/Tools/jaby_engine_fconv/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
fn main() {
|
||||||
|
println!("Blubb!");
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user