qt6windows7/examples/corelib/serialization/savegame/savegame.pro

22 lines
302 B
Prolog
Raw Normal View History

2023-10-30 06:33:08 +08:00
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