made little changes of mingw ffmpeg vvc build

This commit is contained in:
Martin Eesmaa 2022-06-18 20:51:20 +10:00 committed by GitHub
parent 5a85cff664
commit e476cf1c22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -7,14 +7,12 @@ echo Starting to build vvenc...
cd vvenc
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. -G "MinGW Makefiles"
cmake --build . --config Release -j
cmake --build . --target install
cmake --build . --config Release --target install
cd ../../
cd vvdec
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. -G "MinGW Makefiles"
cmake --build . --config Release -j
cmake --build . --target install
cmake --build . --config Release --target install
cd ../../
cd FFmpeg
./configure --enable-gpl --enable-version3 --enable-libvvenc --enable-libvvdec --enable-pic \