blob: 382685296a2ad2404762f364e402c1f06b2502ab (
plain)
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
|
QT += phonon
SOURCES += pixmapitem.cpp \
actor.cpp \
animationmanager.cpp \
block.cpp \
client.cpp \
bonuspoint.cpp \
mainwidget.cpp \
point.cpp
HEADERS += pixmapitem.h \
actor.h \
animationmanager.h \
block.h \
client.h \
bonuspoint.h \
mainwidget.h \
constants.h \
point.h
RESOURCES += pacman.qrc
OBJECTS_DIR = .obj
MOC_DIR = .moc
RC_FILE = pacman.rc
OTHER_FILES += \
style.qss \
pacman.rc
|