fa834aba6c
Completely re-written the project to use the QT API. By using Qt, I've open up use of useful tools like QCryptographicHash, QString, QByteArray, QFile, etc.. In the future I could even make use of slots/signals. The code is also in general much more readable and thread management is by far much easier. General operation of the app should be the same, this commit just serves as a base for the migration over to QT.
23 lines
532 B
Bash
23 lines
532 B
Bash
#!/bin/sh
|
|
apt update -y
|
|
apt install -y pkg-config
|
|
apt install -y cmake
|
|
apt install -y make
|
|
apt install -y g++
|
|
apt install -y wget
|
|
apt install -y unzip
|
|
apt install -y git
|
|
apt install -y ffmpeg
|
|
apt install -y gstreamer1.0*
|
|
apt install -y libavcodec-dev
|
|
apt install -y libavformat-dev
|
|
apt install -y libavutil-dev
|
|
apt install -y libswscale-dev
|
|
apt install -y libgstreamer1.0-dev
|
|
apt install -y x264
|
|
apt install -y libx264-dev
|
|
apt install -y libilmbase-dev
|
|
apt install -y libopencv-dev
|
|
apt install -y qtbase5-dev
|
|
apt install -y apache2
|