From b9902347f8adbb23651e832454441537ef563318 Mon Sep 17 00:00:00 2001 From: Daniel Stankewitz Date: Mon, 16 Jul 2018 17:50:11 +0200 Subject: [PATCH] Update build_tc.sh --- build_tc.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/build_tc.sh b/build_tc.sh index aa7b74f..7f4b2c4 100644 --- a/build_tc.sh +++ b/build_tc.sh @@ -26,7 +26,15 @@ function compile { 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" elif [ "$STEP" == "lame" ]; then compile lame "--enable-nasm --disable-frontend --disable-shared --enable-static"