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

TARGET = savegame
CONFIG += console
CONFIG -= app_bundle

TEMPLATE = app

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

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

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