mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 08:25:19 +01:00
16 lines
No EOL
535 B
Bash
16 lines
No EOL
535 B
Bash
#!/bin/bash
|
|
|
|
printf "This Script will setup the tauri dev environment\n"
|
|
# Install CLang and macOS Development Dependencies
|
|
printf "Installing CLang and macOS Development Dependencies\n"
|
|
xcode-select --install
|
|
# Install Rust
|
|
printf "Installing Rust\n"
|
|
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
|
|
|
|
# All done!
|
|
printf "All done!\n"
|
|
printf "You can now run 'tauri dev' to start the development environment\n"
|
|
printf "You can now run 'tauri build' to build the application\n"
|
|
|
|
# Path: scripts\setup_tauri_dev_windows.sh |