Qt3D
Go to file
Alexey Edelev aab1bc000f Add the use of the qt_internal_project_setup function
The function sets the required CMake variables and policies.

Pick-to: 6.5
Task-number: QTBUG-112685
Change-Id: I84d24c8ac2bc0979152554142d80b3eb53f30856
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
2023-05-31 13:56:03 +02:00
LICENSES Add license text file for CC-BY-4.0 2022-10-19 11:57:11 +02:00
cmake Change the license of all CMakeLists.txt and *.cmake files to BSD 2022-08-24 01:53:10 +02:00
coin Add Axivion config 2023-03-24 05:30:57 +00:00
config.tests Change the license of all CMakeLists.txt and *.cmake files to BSD 2022-08-24 01:53:10 +02:00
dist Add Qt 6.0.0 changes file 2020-11-24 07:25:01 +00:00
examples Restore missing assets 2023-03-17 11:44:34 +00:00
src Adapt to the RHI API concept 2023-05-22 21:45:37 +02:00
tests planets-qml: restore missing assets 2023-05-26 10:16:12 +02:00
tools/utils Use SPDX license identifiers 2022-06-22 10:47:10 +02:00
usecases Change the license of all CMakeLists.txt and *.cmake files to BSD 2022-08-24 01:53:10 +02:00
.clang-format .clang-format: remove column limit 2022-12-19 08:50:12 +01:00
.cmake.conf Remove QT_USE_SYNCQT_CPP 2023-01-02 18:38:38 +01:00
.gitattributes Update the git-archive export options 2012-09-11 09:25:30 +02:00
.gitignore Minor .gitignore update on mac 2020-03-11 11:30:32 +01:00
.gitmodules Update assimp submodule 2021-06-02 15:19:37 +03:00
.qt-license-check.exclude Exclude developer qtcreator templates from license checks 2016-01-01 09:57:41 +00:00
.tag Update the git-archive export options 2012-09-11 09:25:30 +02:00
CMakeLists.txt Add the use of the qt_internal_project_setup function 2023-05-31 13:56:03 +02:00
README Add comment about assimp to readme 2015-05-24 10:20:53 +00:00
conanfile.py Use SPDX license identifiers 2022-06-22 10:47:10 +02:00
config_help.txt 3DCore: rip away the configure option and static choice of SIMD 2023-01-19 19:18:52 -08:00
configure.cmake Change the license of all CMakeLists.txt and *.cmake files to BSD 2022-08-24 01:53:10 +02:00
dependencies.yaml Update dependencies on 'dev' in qt/qt3d 2023-05-29 16:30:27 +00:00
qt_cmdline.cmake Change the license of all CMakeLists.txt and *.cmake files to BSD 2022-08-24 01:53:10 +02:00
sync.profile sync.profile: Remove coretest module reference 2020-06-17 15:28:54 +02:00

README

This directory contains the Qt3D project for Qt5:
   * Qt3D QML bindings and
   * Qt3D C++ APIs


Building Qt3D
==================

Qt5 is a rapidly changing bleeding edge environment.  This branch is our initial
support for it and thus is also rapidly changing and bleeding edge.

This branch is experimental, and unsupported.  This information is provided for
advanced use only.

No guarantees about API stability or even if this works at all are supplied, use
at your own risk.

First fetch the Qt5 source tree and Qt3D master branch:

    cd ~/depot
    git clone ssh://codereview.qt-project.org:29418/qt/qt5.git
    cd qt5
    ./init-repository --codereview-username <username> \
        --module-subset=qtbase,qtsvg,qtdeclarative,qttools,qtxmlpatterns,qtdoc,qlalr,qtrepotools,qtqa,qtlocation,qt3d
    git submodule foreach "git fetch gerrit && git reset --hard gerrit/master"
    cd qt3d
    scp -p -P 29418 codereview.qt-project.org:hooks/commit-msg .git/hooks/
    git fetch gerrit
    git checkout --track -b master gerrit/master

If you are reading this file then somehow you probably already got this far anyway.

Now build Qt5, which will also build Qt3D as a module:

    cd ~/build
    mkdir qt5
    cd qt5
    ~/depot/qt5/configure -developer-build -opensource -confirm-license -no-webkit -no-phonon -nomake tests \
        -nomake examples -declarative -opengl -svg && make -j 4


What's in Qt3D
==================

Directory structure:

src/threed/
    This is the main library of the Qt3D project, containing abstractions
    for cross-platform GL, shaders, lighting models, and so on.
src/plugins/
    Scene format loading plugins.
src/imports/
    QML import plugins.
util/
    Various utilities that are useful when working with Qt3D.
examples/
    Some examples of using Qt3D QML bindings and Qt3D C++ API.
demos/
    Some more complex demos of using Qt3D QML bindings and Qt3D C++ API.
tests/auto/qml3d/
    Unit tests for the QML bindings.
tests/auto/threed/
    Unit tests for the C++ API
doc/
    Documentation.
devices/symbian/
    Symbian deployment file


Documentation
=============

The documentation can be generated with "make docs".  It will be placed
into "doc/html" in the build directory.


Packages
========

This section is only for those developing Qt3D.  Read on to discover how
the building of packages works.  This section is also important if you want to
change how the structure of the Qt3D pro files work.

To build Qt3D, run:

    qmake && make

The .pro files will cause the toolchain to place the libraries, QML files and
meshes of Qt3D directly into place, as part of the compile process.  The files
go into the bin/ directory, and the executables can be run directly from there.
If you are doing a developer build, plugins will be installed in such a way
that Qt will find them.

After building the tree the install step is invoked using the INSTALL_ROOT environment
export to cause the installation rules to place all the files into a sandboxed
install tree, ready for packaging:

    INSTALL_ROOT=tmp make install


Examples
========

Some examples require assimp library to parse the content. Go to http://assimp.sourceforge.net/
and build and install the assimp library. Then configure Qt3D to include assimp and
run qmake && make.