VVCEasy/vvcbuildfraun/BuildforMacOS.sh

20 lines
556 B
Bash
Raw Normal View History

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.
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
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . -j $nproc
2022-04-06 09:39:55 +02:00
cd ../
cd vvdec
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . -j $nproc
2022-04-06 09:39:55 +02:00
cd ../
echo Please see the build files following starting with bin/release-static
2022-04-06 09:39:55 +02:00
pause