Added QT5 dependency installation to the linux build

This commit is contained in:
Matthew Budd 2020-06-30 22:28:02 -04:00
parent 9407867e18
commit e748fb67f4
1 changed files with 16 additions and 10 deletions

View File

@ -55,16 +55,22 @@ pkg-config --cflags --libs minizip
# GTK+-2 is no longer needed # GTK+-2 is no longer needed
#sudo apt-get install libgtk2.0-dev #sudo apt-get install libgtk2.0-dev
# Install GTK+-3 ## Install GTK+-3
echo '****************************************' #echo '****************************************'
echo 'Install Dependency libgtk-3-dev' #echo 'Install Dependency libgtk-3-dev'
echo '****************************************' #echo '****************************************'
sudo apt-get --assume-yes install libgtk-3-dev #sudo apt-get --assume-yes install libgtk-3-dev
pkg-config --cflags --libs gtk+-3.0 #pkg-config --cflags --libs gtk+-3.0
#
## Install GTK+-3 Sourceview
#sudo apt-get --assume-yes install libgtksourceview-3.0-dev
#pkg-config --cflags --libs gtksourceview-3.0
# Install GTK+-3 Sourceview # Install QT5
sudo apt-get --assume-yes install libgtksourceview-3.0-dev echo '****************************************'
pkg-config --cflags --libs gtksourceview-3.0 echo 'Install Dependency Qt5'
echo '****************************************'
sudo apt-get --assume-yes install qt5-default
# Install scons # Install scons
#echo '****************************************' #echo '****************************************'
@ -93,7 +99,7 @@ qmake ..
# -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \ # -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
# .. # ..
make -j `nproc` make -j `nproc`
#make install make install
# Debug via ssh if necessary # Debug via ssh if necessary
if [ ! -z $APPVEYOR_SSH_BLOCK ]; then if [ ! -z $APPVEYOR_SSH_BLOCK ]; then