diff options
| author | totycro <totycro@unknown-horizons.org> | 2011-04-04 20:35:49 +0200 |
|---|---|---|
| committer | totycro <totycro@unknown-horizons.org> | 2011-04-04 20:35:49 +0200 |
| commit | a5ea024b0119a4b0fea858ae9115d744a786d3af (patch) | |
| tree | 99408cf77bad1596c9e2fcdf035a2294eff64cdd /pacman-c++/pacman.pro | |
| parent | 0693d00da48d795c7ccb658e8b69fe17f4427337 (diff) | |
| download | foop-a5ea024b0119a4b0fea858ae9115d744a786d3af.tar.gz foop-a5ea024b0119a4b0fea858ae9115d744a786d3af.tar.bz2 foop-a5ea024b0119a4b0fea858ae9115d744a786d3af.zip | |
change project file:
use:
qmake -config client
or
qmake -config main
Added basic client gui infrastructure
Diffstat (limited to 'pacman-c++/pacman.pro')
| -rw-r--r-- | pacman-c++/pacman.pro | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/pacman-c++/pacman.pro b/pacman-c++/pacman.pro index 2bb8629..f63612d 100644 --- a/pacman-c++/pacman.pro +++ b/pacman-c++/pacman.pro | |||
| @@ -1,6 +1,5 @@ | |||
| 1 | QT += phonon | 1 | QT += phonon |
| 2 | SOURCES += main.cpp \ | 2 | SOURCES += pixmapitem.cpp \ |
| 3 | pixmapitem.cpp \ | ||
| 4 | actor.cpp \ | 3 | actor.cpp \ |
| 5 | animationmanager.cpp \ | 4 | animationmanager.cpp \ |
| 6 | block.cpp | 5 | block.cpp |
| @@ -13,3 +12,18 @@ RESOURCES += pacman.qrc | |||
| 13 | 12 | ||
| 14 | OBJECTS_DIR = .obj | 13 | OBJECTS_DIR = .obj |
| 15 | MOC_DIR = .moc | 14 | MOC_DIR = .moc |
| 15 | |||
| 16 | |||
| 17 | client { | ||
| 18 | SOURCES += client.cpp \ | ||
| 19 | mainwidget.cpp | ||
| 20 | HEADERS += client.h \ | ||
| 21 | mainwidget.h | ||
| 22 | TARGET = client | ||
| 23 | } | ||
| 24 | |||
| 25 | main { | ||
| 26 | SOURCES += main.cpp | ||
| 27 | TARGET = pacman | ||
| 28 | } | ||
| 29 | |||
