1
0
mirror of https://github.com/MartinEesmaa/VVCEasy.git synced 2025-03-12 01:00:08 +01:00

20 lines
556 B
Bash
Raw Normal View History

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