forked from frida/cryptoshark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcryptoshark.pro
60 lines (48 loc) · 1.1 KB
/
cryptoshark.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
55
56
57
58
59
60
TEMPLATE = app
QT += qml quick sql widgets
CONFIG += c++11
QTPLUGIN.bearer = -
QTPLUGIN.imageformats = -
QTPLUGIN.qmltooling = -
SOURCES += \
main.cpp \
nativepointer.cpp \
models.cpp \
models/functions.cpp \
models/modules.cpp \
router.cpp
RESOURCES += qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
QMAKE_INFO_PLIST = Info.plist
win32:RC_ICONS = images/icon.ico
macx:ICON = images/icon.icns
# Default rules for deployment.
include(deployment.pri)
HEADERS += \
nativepointer.h \
models.h \
models/functions.h \
models/modules.h \
router.h
unix {
PARTS = $$[QT_INSTALL_LIBS] libQt5Core.prl
COREPRL = $$join(PARTS, "/")
}
win32 {
PARTS = $$[QT_INSTALL_LIBS] Qt5Core.prl
COREPRL = $$join(PARTS, "\\")
}
exists($$COREPRL) {
include($$COREPRL)
!contains(QMAKE_PRL_CONFIG, shared) {
CONFIG += cryptoshark_static_qt
}
}
cryptoshark_static_qt {
DEFINES += CRYPTOSHARK_STATIC_QT=1
RESOURCES += cryptoshark_qml_plugin_import.qrc
}
win32 {
QMAKE_LFLAGS += /SAFESEH:NO
}