-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMapEditor.pro
62 lines (55 loc) · 1.46 KB
/
MapEditor.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
#-------------------------------------------------
#
# Project created by QtCreator 2017-01-03T12:15:19
#
#-------------------------------------------------
QT += core gui
INCLUDEPATH += src
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
INCLUDEPATH += \
/home/anyuser/Downloads/squish-1.11/ \
/home/anyuser/Developer/Kreatures/Engine/src/ \
/home/anyuser/Developer/Kreatures/libFreetures/include/
LIBS += -L/home/anyuser/Downloads/squish-1.11/ -lsquish -ldrm
TARGET = MapEditor
TEMPLATE = app
SOURCES += main.cpp \
src/mainwindow.cpp \
src/viewwidget.cpp \
src/room.cpp \
src/importer.cpp \
src/save.cpp \
src/roomsfromimage.cpp \
src/verticies.cpp \
src/load.cpp \
src/commandlist.cpp \
src/workerthread.cpp \
src/super_xbr.cpp \
src/scaleimages.cpp \
src/verticiesfromimage.cpp \
src/casttoedges.cpp \
src/roommesh.cpp \
src/palette16.cpp \
src/airfromrooms.cpp \
src/linkrooms.cpp \
src/airfromroomsnp.cpp \
src/joinroomsvertically.cpp
HEADERS += mainwindow.h \
src/mainwindow.h \
src/viewwidget.h \
src/byteswap.h \
src/room.h \
src/roomsfromimage.h \
src/verticies.h \
src/commandlist.h \
src/workerthread.h \
src/diffusionmap.h \
src/verticiesfromimage.h \
src/casttoedges.h \
src/roommesh.h \
src/palette16.h \
src/airfromrooms.h \
src/linkrooms.h \
src/airfromroomsnp.h \
src/joinroomsvertically.h
FORMS += mainwindow.ui