diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-11-29 01:53:30 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-11-29 01:53:30 +0100 |
commit | ff26b9b60c2e9084fbf86c93b5974407061df2a5 (patch) | |
tree | 6dd9a7d599d0c632619aef8b21b5d06d122379bb /build.sh | |
parent | 9d94266c63b91ba873aa9ebf80e38d53da59baa1 (diff) |
Add av1 option, add option to install polkit rule in flatpak to remove password prompts
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |