mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-03-31 17:27:05 +09:00
11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ $# -ne 1 ] && echo "usage: build.sh debug|release" && exit 1
|
|
|
|
script_dir=$(dirname "$0")
|
|
cd "$script_dir"
|
|
|
|
sibs build --"$1" gpu-screen-recorder-overlay-daemon
|
|
sibs build --"$1"
|
|
echo "Successfully built"
|