Qt3D
Go to file
Kimmo Ollila 5b43b8d785 Remove unnecessary QT_CONFIG(library)
QFactoryLoader is available without QLibrary

Change-Id: I3676abe03c1d84107efe5a45915cf0c0d1b4fd49
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
2017-03-03 11:19:47 +00:00
config.tests Added FBX geometry loader 2017-01-20 13:56:41 +00:00
dist Add changes file for 5.8.0 2016-12-14 11:18:23 +00:00
examples Add simple custom material example 2017-02-28 07:05:32 +00:00
src Remove unnecessary QT_CONFIG(library) 2017-03-03 11:19:47 +00:00
tests Split blend tree manual test out from simple key frame test 2017-03-02 21:03:26 +00:00
tools Add script for blender to export animations for Qt 3D 2017-03-02 18:46:11 +00:00
usecases Unify license header usage 2016-01-26 11:43:08 +00:00
.gitattributes Update the git-archive export options 2012-09-11 09:25:30 +02:00
.gitignore Ignore compiled qml files (.qmlc) 2017-02-11 13:54:53 +00:00
.qmake.conf Bump version 2016-08-29 14:34:37 +02: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
LICENSE.GPL Expand license scope from "Qt GUI Toolkit" to "Qt Toolkit" 2016-06-19 00:48:21 +00:00
LICENSE.GPL2 Unify license header usage 2016-01-26 11:43:03 +00:00
LICENSE.GPL3 Unify license header usage 2016-01-26 11:43:03 +00:00
LICENSE.GPL3-EXCEPT Unify license header usage 2016-01-26 11:43:08 +00:00
LICENSE.GPLv3 Expand license scope from "Qt GUI Toolkit" to "Qt Toolkit" 2016-06-19 00:48:21 +00:00
LICENSE.LGPL3 Unify license header usage 2016-01-26 11:43:03 +00:00
LICENSE.LGPLv3 Expand license scope from "Qt GUI Toolkit" to "Qt Toolkit" 2016-06-19 00:48:21 +00:00
README Add comment about assimp to readme 2015-05-24 10:20:53 +00:00
configure.json Added FBX geometry loader 2017-01-20 13:56:41 +00:00
pkg.pri make use of COPIES 2016-05-10 11:11:34 +00:00
qt3d.pro Convert qt3d to the new configure system 2016-10-28 11:01:38 +00:00
sync.profile Move scene2d to own module and implement conditional plugin loading 2017-02-28 09:48:17 +00: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.