Cross.toml 640 B

1234567891011121314151617
  1. [build.env]
  2. # must set ICONS_VOLUME, DIST_VOLUME, ISOLATION_VOLUME and WORKSPACE_VOLUME environment variables
  3. # ICONS_VOLUME: absolute path to the .icons folder
  4. # DIST_VOLUME: absolute path to the dist folder
  5. # ISOLATION_VOLUME: absolute path to the isolation dist folder
  6. # WORKSPACE_VOLUME: absolute path to the workspace
  7. # this can be done running `$ . .setup-cross.sh` in the examples/api folder
  8. volumes = [
  9. "ICONS_VOLUME",
  10. "DIST_VOLUME",
  11. "ISOLATION_VOLUME",
  12. "WORKSPACE_VOLUME",
  13. ]
  14. [target.aarch64-unknown-linux-gnu]
  15. image = "aarch64-unknown-linux-gnu:latest"
  16. #image = "ghcr.io/tauri-apps/tauri/aarch64-unknown-linux-gnu:latest"