Update build_tc.sh

This commit is contained in:
Daniel Stankewitz 2018-07-16 17:50:11 +02:00 committed by GitHub
parent 8a8cdcfbe1
commit b9902347f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,15 @@ function compile {
make install make install
} }
if [ "$STEP" == "libfdk-aac" ]; then if [ "$STEP" == "opus" ]; then
cd $SRC/opus
./autogen.sh
./configure --prefix=$BUILD
cd win32/VS2015
MSBuild.exe /maxcpucount:$CPU_CORES /property:Configuration="$MSBUILD_CONFIG" /property:Platform=x64 opus.vcxproj
elif [ "$STEP" == "libfdk-aac" ]; then
compile fdk-aac "--disable-static --disable-shared" compile fdk-aac "--disable-static --disable-shared"
elif [ "$STEP" == "lame" ]; then elif [ "$STEP" == "lame" ]; then
compile lame "--enable-nasm --disable-frontend --disable-shared --enable-static" compile lame "--enable-nasm --disable-frontend --disable-shared --enable-static"