32
32
# -------------------------------------------------
33
33
TARGET = FontBuilder
34
34
TEMPLATE = app
35
- SOURCES += main.cpp \
36
- fontbuilder.cpp \
37
- colorbutton.cpp \
38
- fontselectframe.cpp \
39
- fontoptionsframe.cpp \
40
- fontrenderer.cpp \
41
- charactersframe.cpp \
42
- fontconfig.cpp \
43
- abstractlayouter.cpp \
44
- layoutconfig.cpp \
45
- layoutdata.cpp \
46
- layouters/linelayouter.cpp \
47
- layouterfactory.cpp \
48
- layouters/boxlayouter.cpp \
49
- layoutconfigframe.cpp \
50
- outputconfig.cpp \
51
- outputframe.cpp \
52
- abstractexporter.cpp \
53
- exporters/ghlexporter.cpp \
54
- exporterfactory.cpp \
55
- abstractimagewriter.cpp \
56
- imagewriterfactory.cpp \
57
- image/builtinimagewriter.cpp \
58
- exporters/zfiexporter.cpp \
59
- image/targawriter.cpp \
60
- fonttestframe.cpp \
61
- fonttestwidget.cpp \
62
- exporters/divoexporter.cpp \
63
- charmapdialog.cpp \
64
- charsselectwidget.cpp \
65
- exporters/nglexporter.cpp \
66
- exporters/luaexporter.cpp \
67
- fontdrawwidget.cpp \
68
- fontloader.cpp
69
- HEADERS += fontbuilder.h \
70
- colorbutton.h \
71
- fontselectframe.h \
72
- fontoptionsframe.h \
73
- fontrenderer.h \
74
- charactersframe.h \
75
- fontconfig.h \
76
- rendererdata.h \
77
- abstractlayouter.h \
78
- layoutconfig.h \
79
- layoutdata.h \
80
- layouters/linelayouter.h \
81
- layouterfactory.h \
82
- layoutchar.h \
83
- layouters/boxlayouter.h \
84
- layoutconfigframe.h \
85
- outputconfig.h \
86
- outputframe.h \
87
- abstractexporter.h \
88
- exporters/ghlexporter.h \
89
- exporterfactory.h \
90
- abstractimagewriter.h \
91
- imagewriterfactory.h \
92
- image/builtinimagewriter.h \
93
- exporters/zfiexporter.h \
94
- image/targawriter.h \
95
- fonttestframe.h \
96
- fonttestwidget.h \
97
- exporters/divoexporter.h \
98
- charmapdialog.h \
99
- charsselectwidget.h \
100
- exporters/nglexporter.h \
101
- exporters/luaexporter.h \
102
- fontdrawwidget.h \
103
- fontloader.h
104
- FORMS += fontbuilder.ui \
105
- fontselectframe.ui \
106
- fontoptionsframe.ui \
107
- charactersframe.ui \
108
- layoutconfigframe.ui \
109
- outputframe.ui \
110
- fonttestframe.ui \
111
- charmapdialog.ui
35
+ SOURCES += src/ main.cpp \
36
+ src/ fontbuilder.cpp \
37
+ src/ colorbutton.cpp \
38
+ src/ fontselectframe.cpp \
39
+ src/ fontoptionsframe.cpp \
40
+ src/ fontrenderer.cpp \
41
+ src/ charactersframe.cpp \
42
+ src/ fontconfig.cpp \
43
+ src/ abstractlayouter.cpp \
44
+ src/ layoutconfig.cpp \
45
+ src/ layoutdata.cpp \
46
+ src/ layouters/linelayouter.cpp \
47
+ src/ layouterfactory.cpp \
48
+ src/ layouters/boxlayouter.cpp \
49
+ src/ layoutconfigframe.cpp \
50
+ src/ outputconfig.cpp \
51
+ src/ outputframe.cpp \
52
+ src/ abstractexporter.cpp \
53
+ src/ exporters/ghlexporter.cpp \
54
+ src/ exporterfactory.cpp \
55
+ src/ abstractimagewriter.cpp \
56
+ src/ imagewriterfactory.cpp \
57
+ src/ image/builtinimagewriter.cpp \
58
+ src/ exporters/zfiexporter.cpp \
59
+ src/ image/targawriter.cpp \
60
+ src/ fonttestframe.cpp \
61
+ src/ fonttestwidget.cpp \
62
+ src/ exporters/divoexporter.cpp \
63
+ src/ charmapdialog.cpp \
64
+ src/ charsselectwidget.cpp \
65
+ src/ exporters/nglexporter.cpp \
66
+ src/ exporters/luaexporter.cpp \
67
+ src/ fontdrawwidget.cpp \
68
+ src/ fontloader.cpp
69
+ HEADERS += src/ fontbuilder.h \
70
+ src/ colorbutton.h \
71
+ src/ fontselectframe.h \
72
+ src/ fontoptionsframe.h \
73
+ src/ fontrenderer.h \
74
+ src/ charactersframe.h \
75
+ src/ fontconfig.h \
76
+ src/ rendererdata.h \
77
+ src/ abstractlayouter.h \
78
+ src/ layoutconfig.h \
79
+ src/ layoutdata.h \
80
+ src/ layouters/linelayouter.h \
81
+ src/ layouterfactory.h \
82
+ src/ layoutchar.h \
83
+ src/ layouters/boxlayouter.h \
84
+ src/ layoutconfigframe.h \
85
+ src/ outputconfig.h \
86
+ src/ outputframe.h \
87
+ src/ abstractexporter.h \
88
+ src/ exporters/ghlexporter.h \
89
+ src/ exporterfactory.h \
90
+ src/ abstractimagewriter.h \
91
+ src/ imagewriterfactory.h \
92
+ src/ image/builtinimagewriter.h \
93
+ src/ exporters/zfiexporter.h \
94
+ src/ image/targawriter.h \
95
+ src/ fonttestframe.h \
96
+ src/ fonttestwidget.h \
97
+ src/ exporters/divoexporter.h \
98
+ src/ charmapdialog.h \
99
+ src/ charsselectwidget.h \
100
+ src/ exporters/nglexporter.h \
101
+ src/ exporters/luaexporter.h \
102
+ src/ fontdrawwidget.h \
103
+ src/ fontloader.h
104
+ FORMS += src/ fontbuilder.ui \
105
+ src/ fontselectframe.ui \
106
+ src/ fontoptionsframe.ui \
107
+ src/ charactersframe.ui \
108
+ src/ layoutconfigframe.ui \
109
+ src/ outputframe.ui \
110
+ src/ fonttestframe.ui \
111
+ src/ charmapdialog.ui
112
112
TRANSLATIONS = fontbuilder_en.ts \
113
113
fontbuilder_ru.ts
114
114
QT += xml
@@ -119,7 +119,7 @@ MOC_DIR = .obj
119
119
UI_DIR = .obj
120
120
TARGET = FontBuilder
121
121
122
- INCLUDEPATH +=. /
122
+ INCLUDEPATH +=src /
123
123
mac {
124
124
INCLUDEPATH += ../include
125
125
INCLUDEPATH += ../include/freetype2
0 commit comments