porymap/porymap.pro

76 lines
1.7 KiB
Prolog
Raw Normal View History

2018-09-12 01:37:36 +01:00
#-------------------------------------------------
#
# Project created by QtCreator 2016-08-31T15:19:13
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = porymap
2018-09-12 01:37:36 +01:00
TEMPLATE = app
RC_ICONS = resources/icons/porymap-icon-1.ico
ICON = resources/icons/porymap-icon-1.ico
2018-09-12 01:37:36 +01:00
SOURCES += core/block.cpp \
core/blockdata.cpp \
2018-09-25 01:12:29 +01:00
core/event.cpp \
core/heallocation.cpp \
2018-09-24 16:48:36 +01:00
core/historyitem.cpp \
core/maplayout.cpp \
core/metatile.cpp \
core/parseutil.cpp \
core/tile.cpp \
core/tileset.cpp \
ui/eventpropertiesframe.cpp \
2018-09-26 00:13:33 +01:00
ui/imageproviders.cpp \
ui/metatileselector.cpp \
ui/movementpermissionsselector.cpp \
2018-09-25 00:49:44 +01:00
ui/neweventtoolbutton.cpp \
ui/noscrollcombobox.cpp \
ui/noscrollspinbox.cpp \
ui/selectablepixmapitem.cpp \
2018-09-12 01:37:36 +01:00
editor.cpp \
graphicsview.cpp \
main.cpp \
mainwindow.cpp \
map.cpp \
project.cpp
HEADERS += core/block.h \
core/blockdata.h \
2018-09-25 01:12:29 +01:00
core/event.h \
core/heallocation.h \
2018-09-24 16:48:36 +01:00
core/history.h \
core/historyitem.h \
core/mapconnection.h \
core/maplayout.h \
core/metatile.h \
core/parseutil.h \
core/tile.h \
core/tileset.h \
ui/eventpropertiesframe.h \
2018-09-26 00:13:33 +01:00
ui/imageproviders.h \
ui/metatileselector.h \
ui/movementpermissionsselector.h \
2018-09-25 00:49:44 +01:00
ui/neweventtoolbutton.h \
ui/noscrollcombobox.h \
ui/noscrollspinbox.h \
ui/selectablepixmapitem.h \
2018-09-12 01:37:36 +01:00
editor.h \
graphicsview.h \
mainwindow.h \
map.h \
project.h
2018-09-12 01:37:36 +01:00
FORMS += mainwindow.ui \
eventpropertiesframe.ui
2018-09-12 01:37:36 +01:00
RESOURCES += \
resources/images.qrc
INCLUDEPATH += core
INCLUDEPATH += ui