build.rs 342 B

12345678910111213
  1. // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
  2. // SPDX-License-Identifier: Apache-2.0
  3. // SPDX-License-Identifier: MIT
  4. const COMMANDS: &[&str] = &["ping"];
  5. fn main() {
  6. tauri_plugin::Builder::new(COMMANDS)
  7. .android_path("android")
  8. .ios_path("ios")
  9. .global_api_script_path("./api-iife.js")
  10. .build();
  11. }