LimeReport Forum
General Category | Основное => Discussion | Обсуждение => Topic started by: Mucip on December 06, 2022, 09:29:06 pm
-
Hi,
I want to use LimeReport in RaspberryPi 4 x64. When I compile below errors and warning appear:
:-1: warning: Project WARNING: CONFIG+=uitools is deprecated. Use QT+=uitools instead.
:-1: error: Project ERROR: Unknown module(s) in QT: designercomponents-private
How can I compile and use LimeReport with my programs on RaspberryPi 4 x64?
Regards,
Mucip:)
-
Hi
Try to add CONFIG *= no_formdesigner to the beginning of the file common.pri and rebuild.
-
Hi Arin,
Firstly I install with
$sudo apt-get install qttools5-private-dev
In this case ERROR disappeared
I added at the top of common.pri your suggestion "CONFIG *= no_formdesigner"
But warning still there?!
Regards,
Mucip:)
-
just try to change
if(equals(QT_MAJOR_VERSION, 5) : greaterThan(QT_MINOR_VERSION, 1)) | equals(QT_MAJOR_VERSION, 6) {
SUBDIRS += console \
lrdview
}
to
if(equals(QT_MAJOR_VERSION, 5) : greaterThan(QT_MINOR_VERSION, 1)) | equals(QT_MAJOR_VERSION, 6) {
SUBDIRS += console
}
in limereport.pro
or if you need to build lrdview
change the lrdview.pro
CONFIG += uitools
to
equals(QT_MAJOR_VERSION, 4) {
CONFIG += uitools
}
equals(QT_MAJOR_VERSION, 5) | equals(QT_MAJOR_VERSION, 6) {
QT += uitools
}
-
Hi,
I don't know what is and what for lrdview? But in anycase I applied your second suggestion.
Now, no warning and no error at all. ;)
Thanks a lot.
Regards,
Mucip:)