blob: ca82382df4defbdf9fd8de6e9b3301d569f89d36 (
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
28
29
|
TEMPLATE = lib
CONFIG += staticlib
include(../common.pri)
SOURCES += pixmapitem.cpp \
actor.cpp \
block.cpp \
bonuspoint.cpp \
point.cpp \
audio.cpp \
sceneholder.cpp \
util.cpp \
gameentity.cpp
HEADERS += pixmapitem.h \
actor.h \
block.h \
bonuspoint.h \
constants.h \
point.h \
audio.h \
sceneholder.h \
util.h \
gameentity.h
OTHER_FILES += style.qss \
pacman.rc
RESOURCES += pacman.qrc
|