| 1 |
CONFIG(release): QMAKE_CFLAGS += -DNDEBUG |
| 2 |
|
| 3 |
INCLUDEPATH += $$PWD/chipmunk/include/chipmunk |
| 4 |
|
| 5 |
QMAKE_CFLAGS += -std=c99 |
| 6 |
|
| 7 |
HEADERS += chipmunk/include/chipmunk/constraints/util.h \ |
| 8 |
chipmunk/include/chipmunk/constraints/cpSlideJoint.h \ |
| 9 |
chipmunk/include/chipmunk/constraints/cpSimpleMotor.h \ |
| 10 |
chipmunk/include/chipmunk/constraints/cpRotaryLimitJoint.h \ |
| 11 |
chipmunk/include/chipmunk/constraints/cpRatchetJoint.h \ |
| 12 |
chipmunk/include/chipmunk/constraints/cpPivotJoint.h \ |
| 13 |
chipmunk/include/chipmunk/constraints/cpPinJoint.h \ |
| 14 |
chipmunk/include/chipmunk/constraints/cpGrooveJoint.h \ |
| 15 |
chipmunk/include/chipmunk/constraints/cpGearJoint.h \ |
| 16 |
chipmunk/include/chipmunk/constraints/cpDampedSpring.h \ |
| 17 |
chipmunk/include/chipmunk/constraints/cpDampedRotarySpring.h \ |
| 18 |
chipmunk/include/chipmunk/constraints/cpConstraint.h \ |
| 19 |
chipmunk/include/chipmunk/cpVect.h \ |
| 20 |
chipmunk/include/chipmunk/cpSpaceHash.h \ |
| 21 |
chipmunk/include/chipmunk/cpSpace.h \ |
| 22 |
chipmunk/include/chipmunk/cpShape.h \ |
| 23 |
chipmunk/include/chipmunk/cpPolyShape.h \ |
| 24 |
chipmunk/include/chipmunk/cpHashSet.h \ |
| 25 |
chipmunk/include/chipmunk/cpCollision.h \ |
| 26 |
chipmunk/include/chipmunk/cpBody.h \ |
| 27 |
chipmunk/include/chipmunk/cpBB.h \ |
| 28 |
chipmunk/include/chipmunk/cpArray.h \ |
| 29 |
chipmunk/include/chipmunk/cpArbiter.h \ |
| 30 |
chipmunk/include/chipmunk/chipmunk.h \ |
| 31 |
chipmunk/include/chipmunk/chipmunk_unsafe.h \ |
| 32 |
chipmunk/include/chipmunk/chipmunk_types.h \ |
| 33 |
chipmunk/include/chipmunk/chipmunk_ffi.h \ |
| 34 |
chipmunk/src/prime.h |
| 35 |
|
| 36 |
SOURCES += chipmunk/src/constraints/cpSlideJoint.c \ |
| 37 |
chipmunk/src/constraints/cpSimpleMotor.c \ |
| 38 |
chipmunk/src/constraints/cpRotaryLimitJoint.c \ |
| 39 |
chipmunk/src/constraints/cpRatchetJoint.c \ |
| 40 |
chipmunk/src/constraints/cpPivotJoint.c \ |
| 41 |
chipmunk/src/constraints/cpPinJoint.c \ |
| 42 |
chipmunk/src/constraints/cpGrooveJoint.c \ |
| 43 |
chipmunk/src/constraints/cpGearJoint.c \ |
| 44 |
chipmunk/src/constraints/cpDampedSpring.c \ |
| 45 |
chipmunk/src/constraints/cpDampedRotarySpring.c \ |
| 46 |
chipmunk/src/constraints/cpConstraint.c \ |
| 47 |
chipmunk/src/cpVect.c \ |
| 48 |
chipmunk/src/cpSpaceHash.c \ |
| 49 |
chipmunk/src/cpSpace.c \ |
| 50 |
chipmunk/src/cpShape.c \ |
| 51 |
chipmunk/src/cpPolyShape.c \ |
| 52 |
chipmunk/src/cpHashSet.c \ |
| 53 |
chipmunk/src/cpCollision.c \ |
| 54 |
chipmunk/src/cpBody.c \ |
| 55 |
chipmunk/src/cpBB.c \ |
| 56 |
chipmunk/src/cpArray.c \ |
| 57 |
chipmunk/src/cpArbiter.c \ |
| 58 |
chipmunk/src/chipmunk.c |