-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMapMaker.pro
68 lines (61 loc) · 1.95 KB
/
MapMaker.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# MapMaker (c) 2016 Andrey Fidrya. MIT license. See LICENSE for more information.
#-------------------------------------------------
#
# Project created by QtCreator 2016-02-20T23:50:54
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = MapMaker
TEMPLATE = app
include(ThirdParty/qtpropertybrowser/src/qtpropertybrowser.pri)7
SOURCES += main.cpp\
MainWindow.cpp \
ObjectBrowser.cpp \
Utils/WidgetUtils.cpp \
Models/LevelObjectsModel.cpp \
Utils/Utils.cpp \
Data/LevelObject.cpp \
Utils/FileUtils.cpp \
Controllers/LevelLoader.cpp \
Utils/Settings.cpp \
PropertyBrowser.cpp \
MapView.cpp \
Models/MapScene.cpp \
MapItems/MapItem.cpp \
Dialogs/SettingsDialog/SettingsDialog.cpp \
Dialogs/SettingsDialog/GridPage.cpp \
Dialogs/NewPropertyDialog/NewPropertyDialog.cpp \
Dialogs/SettingsDialog/GeneralPage.cpp \
Controls/DirectoryLineEdit.cpp \
AppStyle.cpp \
GraphicsEffects/DockPointsGraphicsEffect.cpp \
Controllers/ZoomController.cpp \
Commands/NewItemCommand.cpp \
Commands/DeleteItemCommand.cpp \
Commands/UpdateItemPropertyCommand.cpp
HEADERS += MainWindow.h \
ObjectBrowser.h \
Utils/WidgetUtils.h \
Models/LevelObjectsModel.h \
Utils/Utils.h \
Data/LevelObject.h \
Utils/FileUtils.h \
Controllers/LevelLoader.h \
Utils/Settings.h \
PropertyBrowser.h \
MapView.h \
Models/MapScene.h \
MapItems/MapItem.h \
Dialogs/SettingsDialog/SettingsDialog.h \
Dialogs/SettingsDialog/GridPage.h \
Dialogs/NewPropertyDialog/NewPropertyDialog.h \
Dialogs/SettingsDialog/GeneralPage.h \
Controls/DirectoryLineEdit.h \
Data/MimeTypes.h \
AppStyle.h \
GraphicsEffects/DockPointsGraphicsEffect.h \
Controllers/ZoomController.h \
Commands/NewItemCommand.h \
Commands/DeleteItemCommand.h \
Commands/UpdateItemPropertyCommand.h