summaryrefslogtreecommitdiffstats
path: root/src/api/studio3d/studio3d.pro
blob: cfa8b713824e66ddab199c20854543f873fa38c5 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
TARGET = QtStudio3D

include($$PWD/../../commoninclude.pri)
QT += opengl widgets qml

include($$PWD/doc/doc.pri)

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

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

HEADERS += \
    q3dsdataoutput.h \
    q3dsdataoutput_p.h \
    q3dssurfaceviewer.h \
    q3dssurfaceviewer_p.h \
    qstudio3dglobal.h \
    viewerqmlstreamproxy_p.h \
    q3dsviewersettings.h \
    q3dsviewersettings_p.h \
    q3dspresentation.h \
    q3dspresentation_p.h \
    q3dssceneelement.h \
    q3dssceneelement_p.h \
    q3dselement.h \
    q3dselement_p.h \
    studioutils_p.h \
    q3dscommandqueue_p.h \
    q3dsimagesequencegenerator_p.h \
    q3dsimagesequencegeneratorthread_p.h \
    q3dsdatainput.h \
    q3dsdatainput_p.h \
    q3dsgeometry.h \
    q3dsgeometry_p.h

SOURCES += q3dsdataoutput.cpp \
           q3dssurfaceviewer.cpp \
           viewerqmlstreamproxy.cpp \
           q3dsviewersettings.cpp \
           q3dspresentation.cpp \
           q3dssceneelement.cpp \
           q3dselement.cpp \
           studioutils.cpp \
           q3dscommandqueue.cpp \
           q3dsimagesequencegenerator.cpp \
           q3dsimagesequencegeneratorthread.cpp \
           q3dsdatainput.cpp \
           q3dsgeometry.cpp \
           ../../foundation/Qt3DSLogging.cpp

# Platform specific surface format discovery functions
#TODO: QT3DS-3608 Implement OpenGL version discovery for Windows
#TODO: QT3DS-3609 Implement OpenGL version discovery for Linux
#TODO: QT3DS-3610 Implement OpenGL version discovery for QNX
#TODO: QT3DS-3611 Implement OpenGL version discovery for Integrity
#TODO: QT3DS-3612 Implement OpenGL version discovery for macOS
#TODO: QT3DS-3613 Implement OpenGL version discovery for Android
SOURCES += \
    ../../foundation/qt/formatdiscovery.cpp

load(qt_module)

android {
    # qt prl files contain hard coded paths to android ndk so don't link against them
    # If libraries are missing because of this they need to be added separately
    CONFIG -= link_prl
}