summaryrefslogtreecommitdiffstats
path: root/examples/corelib/serialization/savegame/savegame.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/corelib/serialization/savegame/savegame.pro')
-rw-r--r--examples/corelib/serialization/savegame/savegame.pro22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/corelib/serialization/savegame/savegame.pro b/examples/corelib/serialization/savegame/savegame.pro
new file mode 100644
index 0000000000..15a38c32ef
--- /dev/null
+++ b/examples/corelib/serialization/savegame/savegame.pro
@@ -0,0 +1,22 @@
+QT += core
+QT -= gui
+
+TARGET = savegame
+CONFIG += console
+CONFIG -= app_bundle
+
+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