build.rs 297 B

123456789101112
  1. // Copyright 2019-2023 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. .build();
  10. }