forked from segfault87/stitchy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstitchy.pro
73 lines (68 loc) · 1.18 KB
/
stitchy.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
69
70
71
72
73
CONFIG += qt debug
TEMPLATE = app
TARGET = stitchy
mac {
TARGET = Stitchy
}
VERSION = 0.5.1
DEPENDPATH += .
INCLUDEPATH += .
DEFINES += VERSION=\"\\\"$${VERSION}\\\"\"
LIBS += -lqjson
# Input
RESOURCES += stitchy.qrc
FORMS += \
coloreditor.ui \
documentpropertiesdialog.ui \
importdialog.ui \
newdocumentdialog.ui
HEADERS += \
canvas.h \
cell.h \
color.h \
coloreditor.h \
colormanager.h \
common.h \
document.h \
documentio.h \
documentpropertiesdialog.h \
editor.h \
editoractions.h \
globalstate.h \
importdialog.h \
kdtree.h \
mainwindow.h \
newdocumentdialog.h \
palettemodel.h \
palettewidget.h \
selection.h \
selectiongroup.h \
settings.h \
sparsemap.h \
stitch.h \
utils.h
SOURCES += \
canvas.cpp \
cell.cpp \
color.cpp \
coloreditor.cpp \
colormanager.cpp \
document.cpp \
documentio.cpp \
documentpropertiesdialog.cpp \
editor.cpp \
editoractions.cpp \
globalstate.cpp \
importdialog.cpp \
kdtree.cpp \
mainwindow.cpp \
newdocumentdialog.cpp \
palettemodel.cpp \
palettewidget.cpp \
selection.cpp \
selectiongroup.cpp \
settings.cpp \
sparsemap.cpp \
stitch.cpp \
utils.cpp \
main.cpp