-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun
More file actions
executable file
·27 lines (24 loc) · 636 Bytes
/
run
File metadata and controls
executable file
·27 lines (24 loc) · 636 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env bash
# Run scrcpy generated in the specified BUILDDIR.
#
# This provides the same feature as "ninja run", except that it is possible to
# pass arguments to scrcpy.
#
# Syntax: ./run BUILDDIR <scrcpy options ...>
if [[ $# = 0 ]]
then
echo "Syntax: $0 BUILDDIR <scrcpy options>" >&2
exit 1
fi
BUILDDIR="$1"
shift
if [[ ! -d "$BUILDDIR" ]]
then
echo "The build dir \"$BUILDDIR\" does not exist." >&2
exit 1
fi
SCRCPY_ICON_PATH="app/data/icon.png" \
SCRCPY_ICON_ROOT_PATH="app/data" \
SCRCPY_FONT_PATH="app/data/font.ttf" \
SCRCPY_SERVER_PATH="$BUILDDIR/server/scrcpy-server" \
"$BUILDDIR/app/scrcpy" "$@"