1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2025-03-14 22:58:36 +00:00
cool-retro-term/ubuntu-make.sh
mafagafogigante 383059c222 Added a shell script for Ubuntu.
Included a shell script that uses APT to install all dependencies and
'qmake && make' to build.

Updated README.md so it mentions this script.
2014-10-04 13:16:44 -03:00

10 lines
468 B
Bash

# This is a simple shell script for installing the dependencies and compiling
# the source under Ubuntu 14.04.
# Note that it may also work with other versions of Ubuntu.
apt-get update
apt-get install build-essential qmlscene qt5-qmake qt5-default qtdeclarative5-dev qtdeclarative5-controls-plugin qtdeclarative5-qtquick2-plugin libqt5qml-graphicaleffects qtdeclarative5-dialogs-plugin qtdeclarative5-localstorage-plugin qtdeclarative5-window-plugin
qmake && make