-
Notifications
You must be signed in to change notification settings - Fork 2
/
spritesheetertest1.pro
97 lines (85 loc) · 2.23 KB
/
spritesheetertest1.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#-------------------------------------------------
#
# Project created by QtCreator 2015-06-30T21:00:15
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = SpriteSheeter
TEMPLATE = app
SOURCES += main.cpp\
SheetEditorView.cpp \
ZoomableGraphicsView.cpp \
MainWindow.cpp \
ImportDialog.cpp \
IconExportDialog.cpp \
BalanceSheetDialog.cpp \
RecentDocuments.cpp \
BatchRenderer.cpp \
AnimPreview.cpp \
Animation.cpp \
Sheet.cpp \
Frame.cpp \
undo/UndoStep.cpp \
undo/FontColorStep.cpp \
undo/FrameBgColorStep.cpp \
undo/SheetBgColorStep.cpp \
undo/SheetBgTransparentStep.cpp \
undo/FrameBgTransparentStep.cpp \
undo/SheetFontStep.cpp \
undo/YSpacingStep.cpp \
undo/XSpacingStep.cpp \
undo/MinimizeWidthCheckboxStep.cpp \
undo/SheetWidthStep.cpp \
undo/ReverseAnimStep.cpp \
undo/AnimNameStep.cpp \
undo/NameVisibleStep.cpp \
undo/BalanceAnimStep.cpp \
undo/RemoveDuplicateStep.cpp \
undo/DragDropStep.cpp \
undo/DeleteStep.cpp \
undo/AddImagesStep.cpp
HEADERS += \
FreeImage.h \
ZoomableGraphicsView.h \
SheetEditorView.h \
MainWindow.h \
ImportDialog.h \
IconExportDialog.h \
BalanceSheetDialog.h \
AnimPreview.h \
RecentDocuments.h \
BatchRenderer.h \
Animation.h \
Sheet.h \
BalancePos.h \
Frame.h \
undo/UndoStep.h \
undo/FontColorStep.h \
undo/FrameBgColorStep.h \
undo/SheetBgColorStep.h \
undo/SheetBgTransparentStep.h \
undo/FrameBgTransparentStep.h \
undo/SheetFontStep.h \
undo/YSpacingStep.h \
undo/XSpacingStep.h \
undo/MinimizeWidthCheckboxStep.h \
undo/SheetWidthStep.h \
undo/ReverseAnimStep.h \
undo/AnimNameStep.h \
undo/NameVisibleStep.h \
undo/BalanceAnimStep.h \
undo/RemoveDuplicateStep.h \
undo/DragDropStep.h \
undo/DeleteStep.h \
undo/AddImagesStep.h
FORMS += \
BalanceSheetDialog.ui \
IconExportDialog.ui \
ImportDialog.ui \
MainWindow.ui
RC_FILE = spritesheetertest1.rc
RESOURCES = spritesheetertest1.qrc
DISTFILES +=
win32:LIBS += -L"$$_PRO_FILE_PWD_/lib/" -lFreeImage
linux:LIBS += -lfreeimage