-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGATutorial.pro
More file actions
33 lines (25 loc) · 861 Bytes
/
GATutorial.pro
File metadata and controls
33 lines (25 loc) · 861 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
TEMPLATE = app
QT += qml quick widgets
SOURCES += main.cpp ganalytics.cpp
HEADERS += ganalytics.h
RESOURCES += qml.qrc
android {
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android_data
QT += androidextras
SOURCES += android/androidganalytics.cpp
HEADERS += android/androidganalytics.h
OTHER_FILES += \
android_data/version.xml \
android_data/res/values/strings.xml \
android_data/AndroidManifest.xml \
android_data/src/com/lasconic/QGoogleAnalytics.java
}
ios {
QMAKE_LFLAGS += -framework SystemConfiguration -framework CoreData -framework AdSupport -ObjC
LIBS += -L$$PWD/ios/libs -lGoogleAnalyticsServices -lAdIdAccess -lsqlite3.0
OBJECTIVE_SOURCES += ios/iosanalytics.mm
}
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)