-
Notifications
You must be signed in to change notification settings - Fork 0
/
RVGL_Companion.pro
54 lines (42 loc) · 1.08 KB
/
RVGL_Companion.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
QT += qml quick network quickcontrols2
CONFIG += c++11
RC_ICONS = icon.ico
include(singleapplication/singleapplication.pri)
DEFINES += QAPPLICATION_CLASS=QGuiApplication
SOURCES += main.cpp \
assetsmanager.cpp \
filedownloader.cpp \
rvgllauncher.cpp \
portmanager.cpp
HEADERS += \
assetsmanager.h \
filedownloader.h \
rvgllauncher.h \
portmanager.h
RESOURCES += qml.qrc
win32 {
DEFINES += MINIUPNP_STATICLIB STATICLIB
LIBS += -lws2_32 -liphlpapi
!contains(QMAKE_TARGET.arch, x86_64) {
RESOURCES += win32.qrc
} else {
RESOURCES += win64.qrc
}
}
DISTFILES += \
README.md \
LICENSE \
.travis.yml \
.appveyor.yml \
AUTHORS \
travis/linux/build.sh \
travis/linux/requirements.sh \
travis/windows/build.sh \
travis/windows/requirements.sh \
travis/windows/package.sh \
travis/linux/package.sh
DEFINES += QT_DEPRECATED_WARNINGS
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
LIBS += -L$${PWD} -lminiupnpc