Update build_tc.sh

This commit is contained in:
Daniel Stankewitz 2018-09-17 10:28:00 +02:00 committed by GitHub
parent a7514b5177
commit 7596737200
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,6 +105,14 @@ elif [ "$STEP" == "libvpx" ]; then
make install make install
mv $BUILD/lib/x64/vpxmd.lib $BUILD/lib/vpx.lib mv $BUILD/lib/x64/vpxmd.lib $BUILD/lib/vpx.lib
rm -rf $BUILD/lib/x64 rm -rf $BUILD/lib/x64
elif [ "$STEP" == "libaom" ]; then
cd $SRC/libaom
rm -rf work
mkdir work
cd work
cmake -G "Visual Studio 15 Win64" .. -DENABLE_{DOCS,TOOLS,TESTS}=off -DAOM_TARGET_CPU=x86_64
MSBuild.exe /property:Configuration=Release AOM.sln
elif [ "$STEP" == "ffmpeg" ]; then elif [ "$STEP" == "ffmpeg" ]; then
echo "### Copying NVENC headers ..." echo "### Copying NVENC headers ..."
cd $SRC/ffnvcodec cd $SRC/ffnvcodec