blob: f3a81f6fb07a955848262f8c29d2151cf3526b39 (
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
74
75
76
77
78
79
80
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
qt_internal_add_qml_module(3DQuickRender
URI "Qt3D.Render"
VERSION "${PROJECT_VERSION}"
PAST_MAJOR_VERSIONS 2
PLUGIN_TARGET quick3drenderplugin
CLASS_NAME Qt3DQuick3DRenderPlugin
DEPENDENCIES
QtQml/auto
Qt3D.Core/auto
NO_GENERATE_PLUGIN_SOURCE
SOURCES
items/quick3deffect.cpp items/quick3deffect_p.h
items/quick3dlayerfilter.cpp items/quick3dlayerfilter_p.h
items/quick3dmaterial.cpp items/quick3dmaterial_p.h
items/quick3dmemorybarrier.cpp items/quick3dmemorybarrier_p.h
items/quick3dparameter.cpp items/quick3dparameter_p.h
items/quick3dparameter_p_p.h
items/quick3draycaster.cpp items/quick3draycaster_p.h
items/quick3draycaster_p_p.h
items/quick3drenderpass.cpp items/quick3drenderpass_p.h
items/quick3drenderpassfilter.cpp items/quick3drenderpassfilter_p.h
items/quick3drendertargetoutput.cpp items/quick3drendertargetoutput_p.h
items/quick3dscene.cpp items/quick3dscene_p.h
items/quick3dscreenraycaster.cpp items/quick3dscreenraycaster_p.h
items/quick3dscreenraycaster_p_p.h
items/quick3dshaderdata.cpp items/quick3dshaderdata_p.h
items/quick3dshaderdataarray.cpp items/quick3dshaderdataarray_p.h
items/quick3dstateset.cpp items/quick3dstateset_p.h
items/quick3dtechnique.cpp items/quick3dtechnique_p.h
items/quick3dtechniquefilter.cpp items/quick3dtechniquefilter_p.h
items/quick3dtexture.cpp items/quick3dtexture_p.h
items/quick3dviewport.cpp items/quick3dviewport_p.h
qt3dquickrender_global.cpp qt3dquickrender_global.h qt3dquickrender_global_p.h
qt3dquickrendernodefactory.cpp qt3dquickrendernodefactory_p.h
qt3dquick3drenderforeign_p.h
INCLUDE_DIRECTORIES
items
LIBRARIES
Qt::3DCorePrivate
Qt::3DQuickPrivate
Qt::3DRenderPrivate
Qt::CorePrivate
Qt::QmlPrivate
PUBLIC_LIBRARIES
Qt::3DCore
Qt::3DQuick
Qt::3DRender
Qt::Core
Qt::Gui
Qt::Qml
PRIVATE_MODULE_INTERFACE
Qt::3DCorePrivate
Qt::3DQuickPrivate
Qt::3DRenderPrivate
Qt::CorePrivate
Qt::QmlPrivate
)
qt_internal_extend_target(3DQuickRender CONDITION gcov
COMPILE_OPTIONS
-fprofile-arcs
-ftest-coverage
LINK_OPTIONS
"-fprofile-arcs"
"-ftest-coverage"
)
qt_internal_extend_target(quick3drenderplugin
SOURCES
qt3dquick3drenderplugin.cpp qt3dquick3drenderplugin.h
LIBRARIES
Qt::3DQuickRenderPrivate
)
|