update linux build script

This commit is contained in:
Martin Eesmaa 2022-09-10 10:12:23 +10:00 committed by GitHub
parent 721f30e562
commit 0995eb9e94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,14 +7,14 @@ echo If it's not installed, we will install automatically for you.
echo. echo.
sudo apt update && sudo apt upgrade -y sudo apt update && sudo apt upgrade -y
sudo apt install build-essential cmake -y sudo apt install build-essential cmake -y
cd /Home/Downloads/ cd ~/Downloads
git clone https://github.com/fraunhoferhhi/vvenc.git git clone --depth=1 https://github.com/fraunhoferhhi/vvenc
git clone https://github.com/fraunhoferhhi/vvdec.git git clone --depth=1 https://github.com/fraunhoferhhi/vvdec
cd vvenc cd vvenc
make release make release
cd ../ cd ../
cd vvdec cd vvdec
make release make release
cd ../ cd ../
echo Please see the build files following starting with vvenc/bin/release-shared echo Please see the build files following starting with vvenc/bin/release-static
pause pause