Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Problem Qt 3D Studio integration in QML/Qt files
Forum Updated to NodeBB v4.3 + New Features

Problem Qt 3D Studio integration in QML/Qt files

Scheduled Pinned Locked Moved Unsolved General and Desktop
3dstudio3dmodule
1 Posts 1 Posters 201 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Pivot15P Offline
    Pivot15P Offline
    Pivot15
    wrote on last edited by
    #1

    Hi,

    I am trying to integrate Qt 3d Studio in Qt with a QML file. I've seen that I need to import
    QT += 3dstudioruntime2 in my project file but that module it is not being recognised.

    Here I leave you my code:

    QT += quick
    CONFIG += c++11
    QT += 3dcore
    QT += widgets qml gui
    QT += 3dstudioruntime2
    
    
    # The following define makes your compiler emit warnings if you use
    # any Qt feature that has been marked deprecated (the exact warnings
    # depend on your compiler). Refer to the documentation for the
    # deprecated API to know how to port your code away from it.
    DEFINES += QT_DEPRECATED_WARNINGS
    
    # You can also make your code fail to compile if it uses deprecated APIs.
    # In order to do so, uncomment the following line.
    # You can also select to disable deprecated APIs only up to a certain version of Qt.
    #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
    
    SOURCES += \
            main.cpp
    
    RESOURCES += qml.qrc
    
    # Additional import path used to resolve QML modules in Qt Creator's code model
    QML_IMPORT_PATH =
    
    # Additional import path used to resolve QML modules just for Qt Quick Designer
    QML_DESIGNER_IMPORT_PATH =
    
    # Default rules for deployment.
    qnx: target.path = /tmp/$${TARGET}/bin
    else: unix:!android: target.path = /opt/$${TARGET}/bin
    !isEmpty(target.path): INSTALLS += target
    
    
    win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../build-LibreriaPrueba-Desktop_Qt_5_12_3_MinGW_32_bit-Release/release/ -lLibreriaPrueba
    else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../build-LibreriaPrueba-Desktop_Qt_5_12_3_MinGW_32_bit-Release/debug/ -lLibreriaPrueba
    else:unix: LIBS += -L$$PWD/../build-LibreriaPrueba-Desktop_Qt_5_12_3_MinGW_32_bit-Release/ -lLibreriaPrueba
    
    INCLUDEPATH += $$PWD/../LibreriaPrueba
    DEPENDPATH += $$PWD/../LibreriaPrueba
    
    

    And I get the following error:

    Project ERROR: Unknown module(s) in QT: 3dstudioruntime2
    

    Does anyone know what I have to do for implementing this?

    Thank you!

    1 Reply Last reply
    1

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved