File tree 1 file changed +0
-11
lines changed
1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -11,18 +11,13 @@ cleanup_function() {
11
11
trap cleanup_function EXIT
12
12
13
13
args=(" $@ " )
14
- no_imgui=false
15
14
16
15
# extract options and their arguments into variables.
17
16
while [ -n " $1 " ]; do
18
17
case " $1 " in
19
18
-c|--config)
20
19
shift 2
21
20
;;
22
- -n|--no-imgui)
23
- no_imgui=true
24
- shift
25
- ;;
26
21
-s|--system-libs|-o|--offline-build)
27
22
shift
28
23
;;
@@ -31,8 +26,6 @@ while [ -n "$1" ]; do
31
26
esac
32
27
done
33
28
34
-
35
-
36
29
cd " ${SCRIPT_DIR} "
37
30
38
31
# Build vcpkg
52
45
53
46
cd vcpkg
54
47
55
-
56
48
if [[ $( uname -m) == ' arm64' ]] || [ " $SONIC_PI_BUILD_TARGET " == ' arm64' ]
57
49
then
58
50
triplet=(arm64-osx)
59
51
else
60
52
triplet=(x64-osx)
61
53
fi
62
54
63
-
64
-
65
-
66
55
./vcpkg install libsndfile[core,external-libs] --triplet ${triplet[0]} --recurse
67
56
You can’t perform that action at this time.
0 commit comments