c7c3a78075
There wasn't any example documentation besides json.html, which doesn't actually describe usage of the various QJson* classes. This also makes each QJson* class page link back to json.html. Change-Id: If5ad6493d2728df0cec7bdbbc5790f0b755f816c Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
23 lines
306 B
Prolog
23 lines
306 B
Prolog
QT += core
|
|
QT -= gui
|
|
|
|
TARGET = savegame
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/json/savegame
|
|
INSTALLS += target
|
|
|
|
SOURCES += main.cpp \
|
|
character.cpp \
|
|
game.cpp \
|
|
level.cpp
|
|
|
|
HEADERS += \
|
|
character.h \
|
|
game.h \
|
|
level.h
|