forked from benlau/quickandroid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquickandroid.pri
More file actions
32 lines (23 loc) · 776 Bytes
/
quickandroid.pri
File metadata and controls
32 lines (23 loc) · 776 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
QML_IMPORT_PATH += $$PWD
INCLUDEPATH += $$PWD
RESOURCES += $$PWD/QuickAndroid/quickandroid.qrc
HEADERS += \
$$PWD/quickandroid.h \
$$PWD/qadrawableprovider.h \
$$PWD/qasystemdispatcher.h \
$$PWD/priv/qasystemdispatcherproxy.h
SOURCES += \
$$PWD/quickandroid.cpp \
$$PWD/qadrawableprovider.cpp \
$$PWD/qasystemdispatcher.cpp \
$$PWD/priv/qasystemdispatcherproxy.cpp
android {
QT += androidextras
QA_JAVASRC.path = /src/quickandroid
QA_JAVASRC.files += $$PWD/java/quickandroid/SystemDispatcher.java \
$$PWD/java/quickandroid/QuickAndroidActivity.java
INSTALLS += QA_JAVASRC
}
DISTFILES += \
$$PWD/java/quickandroid/SystemDispatcher.java \
$$PWD/java/quickandroid/QuickAndroidActivity.java