14 lines
306 B
Bash
Executable File
14 lines
306 B
Bash
Executable File
APP_NAME=dir-odt-to-pdf
|
|
|
|
# Apple Silicon (arm64)
|
|
cargo build --target aarch64-apple-darwin --release
|
|
# Intel (x86_64)
|
|
cargo build --target x86_64-apple-darwin --release
|
|
|
|
|
|
lipo -create \
|
|
-output $APP_NAME \
|
|
target/aarch64-apple-darwin/release/$APP_NAME \
|
|
target/x86_64-apple-darwin/release/$APP_NAME
|
|
|