mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
Centralize install process into cmake folder. Prepare macos stuff for dmg and code signing process.
8 lines
195 B
Bash
8 lines
195 B
Bash
#!/bin/bash
|
|
# Arguments :
|
|
# $1 = Executable Name
|
|
# $2 = Identity
|
|
# $3 = Path to recursivly search
|
|
|
|
find $3 -name "*" -exec $1 --force --deep --timestamp --options runtime,library -s "$2" {} \;
|
|
|