]> git.lyx.org Git - lyx.git/blob - development/cmake/src/mathed/CMakeLists.txt
fb06c6dfd841f4457f54a05fda2aed6b67a028f1
[lyx.git] / development / cmake / src / mathed / CMakeLists.txt
1 project(mathed)
2
3 set(mathed_sources
4         textpainter.C
5         textpainter.h
6         math_amsarrayinset.C
7         math_amsarrayinset.h
8         math_arrayinset.C
9         math_arrayinset.h
10         math_atom.C
11         math_atom.h
12         math_autocorrect.C
13         math_autocorrect.h
14         math_biginset.C
15         math_biginset.h
16         math_binominset.C
17         math_binominset.h
18         math_boldsymbolinset.C
19         math_boldsymbolinset.h
20         math_boxinset.C
21         math_boxinset.h
22         math_boxedinset.C
23         math_boxedinset.h
24         math_braceinset.C
25         math_braceinset.h
26         math_casesinset.C
27         math_casesinset.h
28         math_charinset.C
29         math_charinset.h
30         math_colorinset.C
31         math_colorinset.h
32         math_commentinset.C
33         math_commentinset.h
34         math_data.C
35         math_data.h
36         math_decorationinset.C
37         math_decorationinset.h
38         math_deliminset.C
39         math_deliminset.h
40         math_dfracinset.C
41         math_dfracinset.h
42         math_diffinset.C
43         math_diffinset.h
44         math_diminset.C
45         math_diminset.h
46         math_dotsinset.C
47         math_dotsinset.h
48         math_envinset.C
49         math_envinset.h
50         math_extern.C
51         math_extern.h
52         math_exfuncinset.C
53         math_exfuncinset.h
54         math_exintinset.C
55         math_exintinset.h
56         math_factory.C
57         math_factory.h
58         math_fboxinset.C
59         math_fboxinset.h
60         math_frameboxinset.C
61         math_frameboxinset.h
62         math_fontinset.C
63         math_fontinset.h
64         math_fontoldinset.C
65         math_fontoldinset.h
66         math_fracinset.C
67         math_fracinset.h
68         math_fracbase.C
69         math_fracbase.h
70         math_gridinfo.h
71         math_gridinset.C
72         math_gridinset.h
73         math_hullinset.C
74         math_hullinset.h
75         math_inset.C
76         math_inset.h
77         math_kerninset.C
78         math_kerninset.h
79         math_lefteqninset.C
80         math_lefteqninset.h
81         math_liminset.C
82         math_liminset.h
83         math_macro.C
84         math_macro.h
85         math_macroarg.C
86         math_macroarg.h
87         math_macrotemplate.C
88         math_macrotemplate.h
89         math_macrotable.C
90         math_macrotable.h
91         math_makeboxinset.C
92         math_makeboxinset.h
93         math_mathmlstream.C
94         math_mathmlstream.h
95         math_matrixinset.C
96         math_matrixinset.h
97         math_nestinset.C
98         math_nestinset.h
99         math_numberinset.C
100         math_numberinset.h
101         math_oversetinset.C
102         math_oversetinset.h
103         math_parinset.C
104         math_parinset.h
105         math_parser.C
106         math_parser.h
107         math_phantominset.C
108         math_phantominset.h
109         math_replace.h
110         math_rootinset.C
111         math_rootinset.h
112         math_scriptinset.C
113         math_scriptinset.h
114         math_sizeinset.C
115         math_sizeinset.h
116         math_spaceinset.C
117         math_spaceinset.h
118         math_splitinset.C
119         math_splitinset.h
120         math_sqrtinset.C
121         math_sqrtinset.h
122         math_stackrelinset.C
123         math_stackrelinset.h
124         math_streamstr.C
125         math_streamstr.h
126         math_stringinset.C
127         math_stringinset.h
128         math_substackinset.C
129         math_substackinset.h
130         math_support.C
131         math_support.h
132         math_symbolinset.C
133         math_symbolinset.h
134         math_tabularinset.C
135         math_tabularinset.h
136         math_tfracinset.C
137         math_tfracinset.h
138         math_unknowninset.C
139         math_unknowninset.h
140         math_undersetinset.C
141         math_undersetinset.h
142         math_xarrowinset.C
143         math_xarrowinset.h
144         math_xymatrixinset.C
145         math_xymatrixinset.h
146         command_inset.h
147         command_inset.C
148         ref_inset.h
149         ref_inset.C
150         #formulamacro.C
151 )
152 #       math_mboxinset.C
153 #       math_mboxinset.h
154
155
156 lyx_add_path(mathed_sources ${TOP_SRC_DIR}/src/mathed)
157
158 include_directories(${TOP_SRC_DIR}/src/mathed)
159
160 add_library(mathed STATIC ${mathed_sources})
161
162