Skip to content

Commit 916d4ea

Browse files
committedFeb 11, 2025··
Build - tidy
1 parent fae81a3 commit 916d4ea

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed
 

‎app/mac-pre-vcpkg.sh

-11
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,13 @@ cleanup_function() {
1111
trap cleanup_function EXIT
1212

1313
args=("$@")
14-
no_imgui=false
1514

1615
# extract options and their arguments into variables.
1716
while [ -n "$1" ]; do
1817
case "$1" in
1918
-c|--config)
2019
shift 2
2120
;;
22-
-n|--no-imgui)
23-
no_imgui=true
24-
shift
25-
;;
2621
-s|--system-libs|-o|--offline-build)
2722
shift
2823
;;
@@ -31,8 +26,6 @@ while [ -n "$1" ]; do
3126
esac
3227
done
3328

34-
35-
3629
cd "${SCRIPT_DIR}"
3730

3831
# Build vcpkg
@@ -52,16 +45,12 @@ fi
5245

5346
cd vcpkg
5447

55-
5648
if [[ $(uname -m) == 'arm64' ]] || [ "$SONIC_PI_BUILD_TARGET" == 'arm64' ]
5749
then
5850
triplet=(arm64-osx)
5951
else
6052
triplet=(x64-osx)
6153
fi
6254

63-
64-
65-
6655
./vcpkg install libsndfile[core,external-libs] --triplet ${triplet[0]} --recurse
6756

0 commit comments

Comments
 (0)
Please sign in to comment.