diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-07-18 03:21:16 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-07-18 03:21:16 +0200 |
commit | b2644a9881ea65ff64234953fcd97664a60b98af (patch) | |
tree | 4938f694baa1f5e9541043285d819863cff93b0d /build.sh | |
parent | 0a2806972f51109024a114a1c8ad5396e9d535c7 (diff) |
Fix wayland capture on amd/intel
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -45,14 +45,14 @@ build_gsr() { $CC -c src/cursor.c $opts $includes $CC -c src/utils.c $opts $includes $CC -c src/library_loader.c $opts $includes - $CC -c external/wlr-export-dmabuf-unstable-v1-protocol.c $opts $includes + #$CC -c external/wlr-export-dmabuf-unstable-v1-protocol.c $opts $includes $CXX -c src/sound.cpp $opts $includes $CXX -c src/main.cpp $opts $includes $CXX -o gpu-screen-recorder -O2 capture.o nvfbc.o kms_client.o egl.o cuda.o xnvctrl.o overclock.o window_texture.o shader.o \ - color_conversion.o cursor.o utils.o library_loader.o xcomposite_cuda.o xcomposite_vaapi.o kms_vaapi.o kms_cuda.o wlr-export-dmabuf-unstable-v1-protocol.o sound.o main.o $libs $opts + color_conversion.o cursor.o utils.o library_loader.o xcomposite_cuda.o xcomposite_vaapi.o kms_vaapi.o kms_cuda.o sound.o main.o $libs $opts } #build_wayland_protocol build_gsr_kms_server build_gsr -echo "Successfully built gpu-screen-recorder"
\ No newline at end of file +echo "Successfully built gpu-screen-recorder" |