]> git.lyx.org Git - lyx.git/blob - src/mathed/SConscript
fix LFUN enum values (some of them were broken by r13801)
[lyx.git] / src / mathed / SConscript
1 # vi:filetype=python:expandtab:tabstop=2:shiftwidth=2
2
3 # file SConscript
4 #
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7
8 # \author Bo Peng
9 # Full author contact details are available in file CREDITS.
10
11 Import('env')
12
13 print "Entering src/mathed"
14
15 mathed = env.StaticLibrary( 
16   target = '$LOCALLIBPATH/mathed',
17   source = Split('''
18     textpainter.C 
19     math_amsarrayinset.C 
20     math_arrayinset.C 
21     math_atom.C 
22     math_autocorrect.C 
23     math_biginset.C 
24     math_binominset.C 
25     math_boldsymbolinset.C 
26     math_boxinset.C 
27     math_boxedinset.C 
28     math_braceinset.C 
29     math_casesinset.C 
30     math_charinset.C 
31     math_colorinset.C 
32     math_commentinset.C 
33     math_data.C 
34     math_decorationinset.C 
35     math_deliminset.C 
36     math_dfracinset.C 
37     math_diffinset.C 
38     math_diminset.C 
39     math_dotsinset.C 
40     math_envinset.C 
41     math_extern.C 
42     math_exfuncinset.C 
43     math_exintinset.C 
44     math_factory.C 
45     math_fboxinset.C 
46     math_frameboxinset.C 
47     math_fontinset.C 
48     math_fontoldinset.C 
49     math_fracinset.C 
50     math_fracbase.C 
51     math_gridinset.C 
52     math_hullinset.C 
53     math_inset.C 
54     math_kerninset.C 
55     math_lefteqninset.C 
56     math_liminset.C 
57     math_macro.C 
58     math_macroarg.C 
59     math_macrotemplate.C 
60     math_macrotable.C 
61     math_makeboxinset.C 
62     math_mathmlstream.C 
63     math_matrixinset.C 
64     math_nestinset.C 
65     math_numberinset.C 
66     math_oversetinset.C 
67     math_parinset.C 
68     math_parser.C 
69     math_phantominset.C 
70     math_rootinset.C 
71     math_scriptinset.C 
72     math_sizeinset.C 
73     math_spaceinset.C 
74     math_splitinset.C 
75     math_sqrtinset.C 
76     math_stackrelinset.C 
77     math_streamstr.C 
78     math_stringinset.C 
79     math_substackinset.C 
80     math_support.C 
81     math_symbolinset.C 
82     math_tabularinset.C 
83     math_tfracinset.C 
84     math_unknowninset.C 
85     math_undersetinset.C 
86     math_xarrowinset.C 
87     math_xymatrixinset.C 
88     command_inset.C 
89     ref_inset.C
90   ''')
91 )
92
93 # return the library
94 Return('mathed')