summaryrefslogtreecommitdiffstats
path: root/src/Viewer/qmlviewer/qmlviewer.pro
blob: dca7feab1d8d9cc68674961d34f2e346a49f2e2e (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
include($$PWD/../../Runtime/commoninclude.pri)

QT += qml quick opengl studio3d-private
CONFIG += plugin

qtHaveModule(multimedia) {
DEFINES += PLATFORM_HAS_QT_MULTIMEDIA_LIB
QT += multimedia
}

TARGET = qtstudio3d
TARGETPATH = QtStudio3D
IMPORT_VERSION = 1.0

SOURCES += \
    Qt3DSViewPlugin.cpp \
    Qt3DSView.cpp \
    Qt3DSRenderer.cpp \
    q3dspresentationitem.cpp

HEADERS += \
    Qt3DSViewPlugin.h \
    Qt3DSView.h \
    Qt3DSRenderer.h \
    q3dspresentationitem.h

LIBS += \
    -lqt3dsruntime$$qtPlatformTargetSuffix() \
    -lqt3dsqmlstreamer$$qtPlatformTargetSuffix()

OTHER_FILES += \
  qmldir

load(qml_plugin)