Warning, /education/gcompris/external/qml-box2d/box2d_lib.pri is written in an unsupported language. File is not indexed.

0001 INCLUDEPATH += $$PWD
0002 
0003 contains(DEFINES, BOX2D_SYSTEM) {
0004 
0005     packagesExist(box2d) {
0006         CONFIG += link_pkgconfig
0007         PKGCONFIG += box2d
0008     } else {
0009 
0010         !contains(INCLUDEPATH,"Box2D") {
0011             unix:BOX2D_INCLUDEPATH = "/usr/include/Box2D"
0012             INCLUDEPATH += $$BOX2D_INCLUDEPATH
0013         }
0014 
0015         !contains(LIBS,"Box2D")
0016             LIBS += "-lBox2D"
0017     }
0018 } else {
0019     include(Box2D/box2d.pri)
0020 }
0021 
0022 SOURCES += \
0023     $$PWD/box2dplugin.cpp \
0024     $$PWD/box2dworld.cpp \
0025     $$PWD/box2dcontact.cpp \
0026     $$PWD/box2dbody.cpp \
0027     $$PWD/box2dfixture.cpp \
0028     $$PWD/box2ddebugdraw.cpp \
0029     $$PWD/box2djoint.cpp \
0030     $$PWD/box2ddistancejoint.cpp \
0031     $$PWD/box2dprismaticjoint.cpp \
0032     $$PWD/box2drevolutejoint.cpp \
0033     $$PWD/box2dmotorjoint.cpp \
0034     $$PWD/box2dweldjoint.cpp \
0035     $$PWD/box2dpulleyjoint.cpp \
0036     $$PWD/box2dfrictionjoint.cpp \
0037     $$PWD/box2dwheeljoint.cpp \
0038     $$PWD/box2dmousejoint.cpp \
0039     $$PWD/box2dgearjoint.cpp \
0040     $$PWD/box2dropejoint.cpp \
0041     $$PWD/box2draycast.cpp
0042 
0043 HEADERS += \
0044     $$PWD/box2dplugin.h \
0045     $$PWD/box2dworld.h \
0046     $$PWD/box2dcontact.h \
0047     $$PWD/box2dbody.h \
0048     $$PWD/box2dfixture.h \
0049     $$PWD/box2ddebugdraw.h \
0050     $$PWD/box2djoint.h \
0051     $$PWD/box2ddistancejoint.h \
0052     $$PWD/box2dprismaticjoint.h \
0053     $$PWD/box2drevolutejoint.h \
0054     $$PWD/box2dmotorjoint.h \
0055     $$PWD/box2dweldjoint.h \
0056     $$PWD/box2dpulleyjoint.h \
0057     $$PWD/box2dfrictionjoint.h \
0058     $$PWD/box2dwheeljoint.h \
0059     $$PWD/box2dmousejoint.h \
0060     $$PWD/box2dgearjoint.h \
0061     $$PWD/box2dropejoint.h \
0062     $$PWD/box2draycast.h