-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGoombatlas.pro
46 lines (38 loc) · 898 Bytes
/
Goombatlas.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-11-05T00:41:45
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Goombatlas
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
mapview.cpp \
map.cpp \
mapobjects.cpp \
nodeeditorwidget.cpp \
pathbehavioreditor.cpp \
cstreamwriter.cpp \
exportmapdialog.cpp \
mapobjecteditor.cpp \
spriteseditor.cpp \
mode.cpp \
animationseditor.cpp
HEADERS += mainwindow.h \
mapview.h \
map.h \
mapobjects.h \
nodeeditorwidget.h \
pathbehavioreditor.h \
cstreamwriter.h \
exportmapdialog.h \
mapobjecteditor.h \
misc.h \
spriteseditor.h \
mode.h \
animationseditor.h
FORMS += mainwindow.ui \
exportmapdialog.ui
CONFIG += c++11