forked from qml-box2d/qml-box2d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
box2d.pro
64 lines (56 loc) · 1.36 KB
/
box2d.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
TEMPLATE = lib
CONFIG += plugin
QT += quick
TARGET = $$qtLibraryTarget(Box2D)
TARGETPATH = Box2D
API_VER=2.0
MOC_DIR = .moc
OBJECTS_DIR = .obj
contains(QT_CONFIG, reduce_exports): CONFIG += hide_symbols
INCLUDEPATH += .
include(Box2D/box2d.pri)
include(examples/examples.pri)
importPath = $$[QT_INSTALL_QML]/$$replace(TARGETPATH, \\., /).$$API_VER
target.path = $${importPath}
qmldir.path = $${importPath}
qmldir.files += $$PWD/qmldir
INSTALLS += target qmldir
SOURCES += box2dplugin.cpp \
box2dworld.cpp \
box2dcontact.cpp \
box2dbody.cpp \
box2dfixture.cpp \
box2ddebugdraw.cpp \
box2djoint.cpp \
box2ddistancejoint.cpp \
box2dprismaticjoint.cpp \
box2drevolutejoint.cpp \
box2dmotorjoint.cpp \
box2dweldjoint.cpp \
box2dpulleyjoint.cpp \
box2dfrictionjoint.cpp \
box2dwheeljoint.cpp \
box2dmousejoint.cpp \
box2dgearjoint.cpp \
box2dropejoint.cpp \
box2draycast.cpp
HEADERS += \
box2dplugin.h \
box2dworld.h \
box2dcontact.h \
box2dbody.h \
box2dfixture.h \
box2ddebugdraw.h \
box2djoint.h \
box2ddistancejoint.h \
box2dprismaticjoint.h \
box2drevolutejoint.h \
box2dmotorjoint.h \
box2dweldjoint.h \
box2dpulleyjoint.h \
box2dfrictionjoint.h \
box2dwheeljoint.h \
box2dmousejoint.h \
box2dgearjoint.h \
box2dropejoint.h \
box2draycast.h