pilorama icon indicating copy to clipboard operation
pilorama copied to clipboard

building from source opensuse

Open oshanz opened this issue 3 years ago • 0 comments

app is working nicely on opensuse tumbleweed. these are the steps that worked for me. if it may helpful please add to the readme file.

$ sudo su zypper in -t pattern patterns-kde-devel_qt5
$ sudo su zypper in libqt5-qtsvg-devel libqt5-qtbase-devel libqt5-qtdeclarative-devel
$ git clone https://github.com/eplatonoff/pilorama
$ cd pilorama
$ /usr/bin/qmake-qt5 src/pilorama.pro 
$ make
$ ./Pilorama

side note: I saw this warning on compilation, but it cause no trouble.

src/trayimageprovider.cpp: In member function ‘virtual QPixmap TrayImageProvider::requestPixmap(const QString&, QSize*, const QSize&)’:
src/trayimageprovider.cpp:13:68: warning: unused parameter ‘size’ [-Wunused-parameter]
   13 | QPixmap TrayImageProvider::requestPixmap(const QString &id, QSize *size, const QSize &requestedSize)
      |                                                             ~~~~~~~^~~~
src/trayimageprovider.cpp:13:87: warning: unused parameter ‘requestedSize’ [-Wunused-parameter]
   13 | QPixmap TrayImageProvider::requestPixmap(const QString &id, QSize *size, const QSize &requestedSize)
      |                                                                          ~~~~~~~~~~~~~^~~~~~~~~~~~~
/usr/lib64/qt5/bin/rcc -name qml src/qml.qrc -o qrc_qml.cpp

oshanz avatar Jun 02 '21 13:06 oshanz