Added x264 dependency to linux and macos appveyor pipeline.

This commit is contained in:
mjbudd77 2021-04-30 14:09:22 -04:00
parent b1638f7c07
commit ec33153e88
2 changed files with 11 additions and 0 deletions

View File

@ -77,6 +77,12 @@ echo 'Install Dependency Qt5'
echo '****************************************' echo '****************************************'
sudo apt-get --assume-yes install qt5-default sudo apt-get --assume-yes install qt5-default
# Install x264
echo '****************************************'
echo 'Install Optional Dependency libx264-dev'
echo '****************************************'
sudo apt-get --assume-yes install libx264-dev
# Install scons # Install scons
#echo '****************************************' #echo '****************************************'
#echo 'Install Build Dependency scons' #echo 'Install Build Dependency scons'

View File

@ -55,6 +55,11 @@ echo 'Install Dependency minizip'
echo '****************************************' echo '****************************************'
brew install minizip brew install minizip
echo '****************************************'
echo 'Install Optional Dependency x264'
echo '****************************************'
brew install x264
#brew install zlib # Already installed in appveyor macOS #brew install zlib # Already installed in appveyor macOS
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig: export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig: