diff --git a/build.rs b/build.rs index 74bf430..0b339c4 100644 --- a/build.rs +++ b/build.rs @@ -1,3 +1,7 @@ +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + fn main() { let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap(); let mobile = target_os == "ios" || target_os == "android"; diff --git a/src/desktop_commands.rs b/src/desktop_commands.rs index 63ef037..98fb60c 100644 --- a/src/desktop_commands.rs +++ b/src/desktop_commands.rs @@ -1,3 +1,7 @@ +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + use serde::{Deserialize, Serialize, Serializer}; use tauri::{ utils::config::WindowConfig, AppHandle, CursorIcon, Icon, Manager, Monitor, PhysicalPosition, diff --git a/src/lib.rs b/src/lib.rs index 0f4c2dd..b34fccb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,7 @@ +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + use tauri::{ plugin::{Builder, TauriPlugin}, Runtime,