1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
!include( ../manual.pri ) {
error( "Couldn't find the manual.pri file!" )
}
QT += 3dcore 3drender 3dinput 3dquick qml quick 3dquickextras 3danimation
SOURCES += \
main.cpp
OTHER_FILES += \
main.qml \
DefaultSceneEntity.qml \
SkinnedEntity.qml \
SkinnedPbrEffect.qml
RESOURCES += \
rigged-simple.qrc \
../../../examples/qt3d/exampleresources/cubemaps.qrc \
../../../examples/qt3d/exampleresources/envmaps.qrc \
../../../examples/qt3d/exampleresources/gltf.qrc
DISTFILES += \
skinnedPbr.vert
|