123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2016-08-31T15:19:13
- #
- #-------------------------------------------------
-
- QT += core gui
-
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
-
- TARGET = pretmap
- TEMPLATE = app
-
-
- SOURCES += main.cpp\
- mainwindow.cpp \
- project.cpp \
- map.cpp \
- blockdata.cpp \
- block.cpp \
- tileset.cpp \
- tile.cpp \
- event.cpp \
- editor.cpp \
- objectpropertiesframe.cpp \
- graphicsview.cpp \
- parseutil.cpp \
- neweventtoolbutton.cpp
-
- HEADERS += mainwindow.h \
- project.h \
- map.h \
- blockdata.h \
- block.h \
- tileset.h \
- tile.h \
- event.h \
- editor.h \
- objectpropertiesframe.h \
- graphicsview.h \
- parseutil.h \
- neweventtoolbutton.h
-
- FORMS += mainwindow.ui \
- objectpropertiesframe.ui
-
- RESOURCES += \
- resources/images.qrc
|