aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/alexaauth/alexaauth.pro
blob: f075d0f92fe5f32e5cda423b6ebd5678656408ae (plain)
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
TEMPLATE = lib
TARGET = alexaauth
QT += qml quick webengine

CONFIG += plugin c++14

TARGET = $$qtLibraryTarget($$TARGET)
uri = alexaauth

HEADERS += \
    alexaauth_plugin.h \
    alexaauth.h

SOURCES += \
    alexaauth_plugin.cpp \
    alexaauth.cpp

MOC_DIR = .moc
OBJECTS_DIR = .obj

DISTFILES = qmldir

qmldir.files = qmldir

unix {
    installPath = /apps/com.luxoft.alexa/imports/alexaauth
    qmldir.path = $$installPath
    target.path = $$installPath

    INSTALLS += target qmldir
}