-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathstockMonitor.pro
More file actions
41 lines (32 loc) · 787 Bytes
/
Copy pathstockMonitor.pro
File metadata and controls
41 lines (32 loc) · 787 Bytes
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
QT += qml quick network
win32|unix|macx {
QT += widgets
SOURCES += trayIcon.cpp
HEADERS += trayIcon.h
}
# The .cpp file which was generated for your project. Feel free to hack it.
SOURCES += main.cpp \
stockModel.cpp \
stockProvider.cpp \
stock.cpp \
qDebug2Logcat.cpp
# Installation path
# target.path =
RESOURCES += \
stockMonitor.qrc
android-g++ {
LIBS += -lgnustl_shared
QT += androidextras
SOURCES += notifyAndroid.cpp
HEADERS += notifyAndroid.h
}
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
OTHER_FILES += \
android/AndroidManifest.xml \
android/src/an/qt/stockMonitor/StockMonitorActivity.java
TRANSLATIONS = stockMonitor_zh.ts
HEADERS += \
stockModel.h \
stockProvider.h \
stock.h \
qDebug2Logcat.h