added windows support and maybe mac (to test)

This commit is contained in:
ayabusa 2024-03-03 20:23:50 +01:00
parent 590059f8b1
commit af261e0880
7 changed files with 71 additions and 2 deletions

View File

@ -21,4 +21,4 @@ The rust slicer is a rust app powered by the tauri framework. It is currently re
- [x] Use the file format choosen - [x] Use the file format choosen
- [ ] Dummy proof - [ ] Dummy proof
- [ ] little website - [ ] little website
- [ ] Port to Windows - [x] Port to Windows

BIN
src-tauri/resources/ffmpeg-macos Executable file

Binary file not shown.

Binary file not shown.

View File

@ -157,9 +157,21 @@ fn choose_folder() -> String{
} }
fn launch_ffmpeg(app: tauri::AppHandle, args: Vec<String>) { fn launch_ffmpeg(app: tauri::AppHandle, args: Vec<String>) {
let bin_name = if cfg!(target_os = "macos") {
PathBuf::from("ffmpeg-macos")
} else if cfg!(windows) {
PathBuf::from("ffmpeg-windows.exe")
} else if cfg!(unix) {
PathBuf::from("ffmpeg-linux")
} else {
panic!("[RUSTY SLICER] can't find what os it is !")
};
let mut bin_path = PathBuf::from("resources");
bin_path.push(bin_name);
// get the path from the bundled binary // get the path from the bundled binary
let resource_path = app.path_resolver() let resource_path = app.path_resolver()
.resolve_resource("resources/ffmpeg-linux") .resolve_resource(bin_path)
.expect("failed to resolve resource"); .expect("failed to resolve resource");
println!("using ffmpeg binary : {}\nwith the following argument : {:?}", resource_path.display(), args); println!("using ffmpeg binary : {}\nwith the following argument : {:?}", resource_path.display(), args);

View File

@ -0,0 +1,19 @@
{
"tauri": {
"bundle": {
"active": true,
"targets": "all",
"identifier": "dev.ayabusa.slicer",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"resources/ffmpeg-linux"
]
}
}
}

View File

@ -0,0 +1,19 @@
{
"tauri": {
"bundle": {
"active": true,
"targets": "all",
"identifier": "dev.ayabusa.slicer",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"resources/ffmpeg-macos"
]
}
}
}

View File

@ -0,0 +1,19 @@
{
"tauri": {
"bundle": {
"active": true,
"targets": "all",
"identifier": "dev.ayabusa.slicer",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"resources/ffmpeg-windows.exe"
]
}
}
}