summaryrefslogtreecommitdiffstats
path: root/examples/corelib/serialization/savegame/savegame.pro
blob: 69e6b216f29f6475c5b520e044596e5cee7da213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
QT += core
QT -= gui

TARGET = savegame
CONFIG += cmdline

TEMPLATE = app

# install
target.path = $$[QT_INSTALL_EXAMPLES]/corelib/serialization/savegame
INSTALLS += target

SOURCES += main.cpp \
    character.cpp \
    game.cpp \
    level.cpp

HEADERS += \
    character.h \
    game.h \
    level.h