Build QML Box2D Library

From Qt Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

  1. Download QML-Box2d source from this link Github QML Box2D.
  2. Move it to <Path to QtSDK><version><gcc(or)mingw>, if you want to build Box2D applications for Desktop. For example this path was like this in my desktop /home/<my_user_name>/QtSDK/Desktop/Qt/4.8.1/gcc/imports*. If you want to develop it for other platform, such as Symbian, move it to *<Path to QtSDK><version>.
  3. Now extract the compressed file and rename the folder as Box2D.

If you look into the imports folder you will notice that the folders are named as we use it in the import statement. For eg. import Qt.labs.folderlistmodel 1.0. Look at the appropriate case as in the folder names. Also notice there is no libBox2D.so file, that is the file which we are going to build.

  1. Now open Qt creator.
  2. Select File -> Open Project.
  3. Move to the Box2d in the open project dialogue box and select the box2d.pro file.
  4. Now the Qt creator will open the project, in the same way it opens any other Qt project.
  5. Now select Projects in the left pane and select Build on the top.
  6. Under the Qt Version select appropriate Qt version such as Desktop Qt <version> for GCC (Qt SDK) Release.
  7. Now select Edit on the left pane and select Build.
  8. This will build your Box2D plugin for QML.
  9. Now goto the Box2D source folder (the one you downloaded and building) and look. There will be a libBox2D.so file.
  10. This means you can use Box2D in your QML projects like using any other plugin,for e.g. FolderListModel.
  11. Explore the projects in Box2D examples folder. You can run the examples using command qmlviewer example_folder_name.qml.