aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-11-29 01:53:30 +0100
committerdec05eba <dec05eba@protonmail.com>2023-11-29 01:53:30 +0100
commitff26b9b60c2e9084fbf86c93b5974407061df2a5 (patch)
tree6dd9a7d599d0c632619aef8b21b5d06d122379bb /build.sh
parent9d94266c63b91ba873aa9ebf80e38d53da59baa1 (diff)
Add av1 option, add option to install polkit rule in flatpak to remove password prompts
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 9bbb02e..c0c14ad 100755
--- a/build.sh
+++ b/build.sh
@@ -19,9 +19,10 @@ build_gsr_gtk() {
includes="$(pkg-config --cflags $dependencies)"
libs="$(pkg-config --libs $dependencies) -ldl"
$CC -c src/egl.c $opts $includes
+ $CC -c src/library_loader.c $opts $includes
$CC -c external/wlr-export-dmabuf-unstable-v1-protocol.c $opts $includes
$CXX -c src/main.cpp $opts $includes
- $CXX -o gpu-screen-recorder-gtk egl.o wlr-export-dmabuf-unstable-v1-protocol.o main.o $libs $opts
+ $CXX -o gpu-screen-recorder-gtk egl.o library_loader.o wlr-export-dmabuf-unstable-v1-protocol.o main.o $libs $opts
}
build_wayland_protocol