From a2dadf2af33d2e36ee1922a5efc318d6c4a44421 Mon Sep 17 00:00:00 2001 From: Takagi Tasuku Date: Sat, 21 Oct 2023 15:33:07 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=A2=E3=82=A4=E3=82=B3=E3=83=B3=E3=81=AE?= =?UTF-8?q?=E3=83=91=E3=82=B9=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 2 +- build.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0fb168e..c9a2c5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ panic = "abort" [package.metadata.bundle] name = "aSynthe" identifier = "jp.tasuren.a-synthe" -icon = ["static/icon/main.png"] +icon = ["release/icon/main.png"] copyright = "(c) 2022 Takagi Tasuku" category = "public.app-category.utilities" long_description = "音階を検出してためのソフトで、簡易的なMIDI出力機能を持っています。" diff --git a/build.rs b/build.rs index 3157c3e..2893f69 100644 --- a/build.rs +++ b/build.rs @@ -6,7 +6,7 @@ use tauri_winres::WindowsResource; #[cfg(target_os = "windows")] fn main() { let mut res = WindowsResource::new(); - res.set_icon("static/icon/main.ico"); + res.set_icon("release/icon/main.ico"); res.compile().unwrap(); }