fist commit
This commit is contained in:
9
scripts/build-macos-arm.sh
Normal file
9
scripts/build-macos-arm.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#! /bin/bash
|
||||
|
||||
echo -e "Start running the script..."
|
||||
cd ../
|
||||
|
||||
echo -e "Start building the app for macos platform..."
|
||||
wails build --clean --platform darwin/arm64
|
||||
|
||||
echo -e "End running the script!"
|
||||
9
scripts/build-macos-intel.sh
Normal file
9
scripts/build-macos-intel.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#! /bin/bash
|
||||
|
||||
echo -e "Start running the script..."
|
||||
cd ../
|
||||
|
||||
echo -e "Start building the app for macos platform..."
|
||||
wails build --clean --platform darwin
|
||||
|
||||
echo -e "End running the script!"
|
||||
9
scripts/build-macos.sh
Normal file
9
scripts/build-macos.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#! /bin/bash
|
||||
|
||||
echo -e "Start running the script..."
|
||||
cd ../
|
||||
|
||||
echo -e "Start building the app for macos platform..."
|
||||
wails build --clean --platform darwin/universal
|
||||
|
||||
echo -e "End running the script!"
|
||||
9
scripts/build-windows.sh
Normal file
9
scripts/build-windows.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#! /bin/bash
|
||||
|
||||
echo -e "Start running the script..."
|
||||
cd ../
|
||||
|
||||
echo -e "Start building the app for windows platform..."
|
||||
wails build --clean --platform windows/amd64
|
||||
|
||||
echo -e "End running the script!"
|
||||
9
scripts/build.sh
Normal file
9
scripts/build.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#! /bin/bash
|
||||
|
||||
echo -e "Start running the script..."
|
||||
cd ../
|
||||
|
||||
echo -e "Start building the app..."
|
||||
wails build --clean
|
||||
|
||||
echo -e "End running the script!"
|
||||
14
scripts/install-wails-cli.sh
Normal file
14
scripts/install-wails-cli.sh
Normal file
@@ -0,0 +1,14 @@
|
||||
#! /bin/bash
|
||||
|
||||
echo -e "Start running the script..."
|
||||
cd ../
|
||||
|
||||
echo -e "Current Go version: \c"
|
||||
go version
|
||||
|
||||
echo -e "Install the Wails command line tool..."
|
||||
go install github.com/wailsapp/wails/v2/cmd/wails@latest
|
||||
|
||||
echo -e "Successful installation!"
|
||||
|
||||
echo -e "End running the script!"
|
||||
Reference in New Issue
Block a user