Compare commits
No commits in common. "759d2a792440aa53403fbe4c8c42726dfe34fafb" and "8c5825439a43d5f80358cdf8dbb88247e328d8c2" have entirely different histories.
759d2a7924
...
8c5825439a
11
README.md
11
README.md
@ -78,17 +78,6 @@ qmake
|
|||||||
make
|
make
|
||||||
```
|
```
|
||||||
|
|
||||||
### Void
|
|
||||||
```
|
|
||||||
# as root
|
|
||||||
xbps-install qt5-devel poppler-qt5-devel quazip-qt5-devel uchardet-devel gcc make
|
|
||||||
# as user
|
|
||||||
git submodule init
|
|
||||||
git submodule update
|
|
||||||
qmake
|
|
||||||
make
|
|
||||||
```
|
|
||||||
|
|
||||||
The GUI is located in `gui/looqs-gui`, the binary for the CLI is in `cli/looqs`
|
The GUI is located in `gui/looqs-gui`, the binary for the CLI is in `cli/looqs`
|
||||||
|
|
||||||
## Packages
|
## Packages
|
||||||
|
@ -37,12 +37,6 @@ else:unix: LIBS += -L$$OUT_PWD/../shared/ -lshared
|
|||||||
|
|
||||||
LIBS += -luchardet -lpoppler-qt5 -lquazip5
|
LIBS += -luchardet -lpoppler-qt5 -lquazip5
|
||||||
|
|
||||||
packagesExist(quazip1-qt5) {
|
|
||||||
PKGCONFIG += quazip1-qt5
|
|
||||||
CONFIG += link_pkgconfig
|
|
||||||
LIBS -= -lquazip5
|
|
||||||
}
|
|
||||||
|
|
||||||
INCLUDEPATH += $$PWD/../shared
|
INCLUDEPATH += $$PWD/../shared
|
||||||
DEPENDPATH += $$PWD/../shared
|
DEPENDPATH += $$PWD/../shared
|
||||||
|
|
||||||
|
10
gui/gui.pro
10
gui/gui.pro
@ -7,11 +7,7 @@
|
|||||||
QT += core concurrent gui network
|
QT += core concurrent gui network
|
||||||
|
|
||||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||||
|
|
||||||
CONFIG += c++17
|
CONFIG += c++17
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
TARGET = looqs-gui
|
TARGET = looqs-gui
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|
||||||
@ -73,12 +69,6 @@ else:unix: LIBS += -L$$OUT_PWD/../shared/ -lshared
|
|||||||
|
|
||||||
LIBS += -luchardet -lpoppler-qt5 -lquazip5
|
LIBS += -luchardet -lpoppler-qt5 -lquazip5
|
||||||
|
|
||||||
packagesExist(quazip1-qt5) {
|
|
||||||
PKGCONFIG += quazip1-qt5
|
|
||||||
CONFIG += link_pkgconfig
|
|
||||||
LIBS -= -lquazip5
|
|
||||||
}
|
|
||||||
|
|
||||||
INCLUDEPATH += $$PWD/../shared
|
INCLUDEPATH += $$PWD/../shared
|
||||||
DEPENDPATH += $$PWD/../shared
|
DEPENDPATH += $$PWD/../shared
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#include <quazip.h>
|
#include <quazip5/quazip.h>
|
||||||
#include <quazipfile.h>
|
#include <quazip5/quazipfile.h>
|
||||||
#include "odtprocessor.h"
|
#include "odtprocessor.h"
|
||||||
#include "tagstripperprocessor.h"
|
#include "tagstripperprocessor.h"
|
||||||
|
|
||||||
|
@ -16,11 +16,7 @@ CONFIG += c++17
|
|||||||
INCLUDEPATH += $$PWD/../sandbox/exile.h/
|
INCLUDEPATH += $$PWD/../sandbox/exile.h/
|
||||||
INCLUDEPATH += /usr/include/poppler/qt5/ /usr/include/quazip5
|
INCLUDEPATH += /usr/include/poppler/qt5/ /usr/include/quazip5
|
||||||
|
|
||||||
# Dirty, we only need the includes here but well this magic works, so...
|
|
||||||
packagesExist(quazip1-qt5) {
|
|
||||||
PKGCONFIG += quazip1-qt5
|
|
||||||
CONFIG += link_pkgconfig
|
|
||||||
}
|
|
||||||
|
|
||||||
# The following define makes your compiler emit warnings if you use
|
# The following define makes your compiler emit warnings if you use
|
||||||
# any feature of Qt which has been marked as deprecated (the exact warnings
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
||||||
|
Loading…
Reference in New Issue
Block a user