summaryrefslogtreecommitdiffstats
path: root/customcontext/customcontext.pro
blob: cf0c2553cde47bb1dd1db62f9ef07ea449c22aa6 (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
32
33
34
35
36
37
38
39
TEMPLATE=lib
TARGET=customcontext

CONFIG += plugin

QT += gui-private core-private quick-private qml-private v8-private

SOURCES += \
    animationdriver.cpp \
    atlastexture.cpp \
    context.cpp \
    overlaprenderer.cpp \
    pluginmain.cpp \
    windowmanager.cpp

HEADERS += \
    animationdriver.h \
    atlastexture.h \
    context.h \
    overlaprenderer.h \
    pluginmain.h \
    windowmanager.h

OTHER_FILES += customcontext.json

target.path +=  $$[QT_INSTALL_PLUGINS]/scenegraph

files.path += $$[QT_INSTALL_PLUGINS]/scenegraph

INSTALLS += target files

arm_build {
    DEFINES += USE_HALF_FLOAT
    QMAKE_CXXFLAGS += -mfp16-format=ieee -mfpu=neon
} else {
    DEFINES += DESKTOP_BUILD
}

verbose:DEFINES+=CUSTOMCONTEXT_DEBUG