2022-05-09 14:12:33 +02:00
|
|
|
#!/bin/bash
|
2022-04-06 09:39:55 +02:00
|
|
|
echo Martin Eesmaa / VVC Compiler (vvenc and vvdec)
|
|
|
|
echo Please make sure your Xcode is installed on your Applications.
|
|
|
|
echo.
|
2022-09-10 02:10:02 +02:00
|
|
|
cd ~/Downloads
|
|
|
|
git clone --depth=1 https://github.com/fraunhoferhhi/vvenc
|
|
|
|
git clone --depth=1 https://github.com/fraunhoferhhi/vvdec
|
2022-04-06 09:39:55 +02:00
|
|
|
cd vvenc
|
2022-09-10 02:10:02 +02:00
|
|
|
mkdir build && cd build
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
cmake --build . -j $nproc
|
2022-04-06 09:39:55 +02:00
|
|
|
cd ../
|
|
|
|
cd vvdec
|
2022-09-10 02:10:02 +02:00
|
|
|
mkdir build && cd build
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
cmake --build . -j $nproc
|
2022-04-06 09:39:55 +02:00
|
|
|
cd ../
|
2022-09-10 02:10:02 +02:00
|
|
|
echo Please see the build files following starting with bin/release-static
|
2022-04-06 09:39:55 +02:00
|
|
|
pause
|