The program qtmm works flawlessly compiled on Arch Linux 64bit
on my Asus EeePC 1018P
g++ (GCC) 4.9.2 20150304 (prerelease), linux kernel 4.0.3-1-ARCH
% qmake --version
QMake version 3.0
Using Qt version 5.4.1 in /usr/lib
There are four necessary steps of changing source files due to get a binary compiled:
Add a line to the end of the Qt project file qtmm.pro :
QT += widgets
Change the include line at the beginning of
main.cpp : FROM
#include<QtGui/QApplication>
TO
#include<QtWidgets/QApplication>
Change two lines in the file mainwindow.cpp because the class QAudioFormat changed the member channels setFrequency() and setChannels() are obsolete, instead use setSampleRate() and channelCount()
The program qtmm works flawlessly compiled on Arch Linux 64bit
on my Asus EeePC 1018P
g++ (GCC) 4.9.2 20150304 (prerelease), linux kernel 4.0.3-1-ARCH
% qmake --version
QMake version 3.0
Using Qt version 5.4.1 in /usr/lib
There are four necessary steps of changing source files due to get a binary compiled:
main.cpp :
FROM
TO
mainwindow.cpp :
FROM
TO
audiobuffer.cpp :
FROM
TO
AND FROM
TO
Compile sources in a terminal with:
qmake
make
73 Tom, oe1tkt