]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
Merge InsetMathBoldSymbol and InsetMathBM by providing \boldsymbol
[lyx.git] / development / scons / scons_manifest.py
1 from SCons.Util import Split
2
3 TOP_extra_files = Split('''
4     ABOUT-NLS
5     ANNOUNCE
6     COPYING
7     INSTALL
8     INSTALL.MacOSX
9     INSTALL.Win32
10     INSTALL.autoconf
11     INSTALL.cmake
12     INSTALL.scons
13     Makefile.am
14     NEWS
15     README
16     README.Cygwin
17     README.Win32
18     README.localization
19     RELEASE-NOTES
20     UPGRADING
21     autogen.sh
22     config.log
23     configure.ac
24     lyx.man
25     rename.sh
26     scons_lyx.log
27 ''')
28
29
30 src_header_files = Split('''
31     ASpell_local.h
32     Author.h
33     BiblioInfo.h
34     Bidi.h
35     Box.h
36     BranchList.h
37     Buffer.h
38     BufferList.h
39     BufferParams.h
40     BufferView.h
41     Bullet.h
42     Changes.h
43     Chktex.h
44     CmdDef.h
45     Color.h
46     ColorCode.h
47     Converter.h
48     ConverterCache.h
49     CoordCache.h
50     Counters.h
51     Cursor.h
52     CursorSlice.h
53     CutAndPaste.h
54     DepTable.h
55     Dimension.h
56     DispatchResult.h
57     DocIterator.h
58     EmbeddedFiles.h
59     Encoding.h
60     ErrorList.h
61     Exporter.h
62     FloatList.h
63     Floating.h
64     Font.h
65     FontEnums.h
66     FontInfo.h
67     FontIterator.h
68     FontList.h
69     Format.h
70     FuncRequest.h
71     FuncStatus.h
72     Graph.h
73     ISpell.h
74     InsetIterator.h
75     InsetList.h
76     Intl.h
77     KeyMap.h
78     KeySequence.h
79     LaTeX.h
80     LaTeXFeatures.h
81     Language.h
82     Layout.h
83     LayoutEnums.h
84     LayoutFile.h
85     Length.h
86     Lexer.h
87     LyX.h
88     LyXAction.h
89     LyXFunc.h
90     LyXRC.h
91     LyXVC.h
92     MetricsInfo.h
93     ModuleList.h
94     Mover.h
95     OutputParams.h
96     ParIterator.h
97     Paragraph.h
98     ParagraphList.h
99     ParagraphMetrics.h
100     ParagraphParameters.h
101     PDFOptions.h
102     PrinterParams.h
103     PSpell.h
104     Row.h
105     Section.h
106     Server.h
107     ServerSocket.h
108     Session.h
109     Spacing.h
110     SpellBase.h
111     TexRow.h
112     Text.h
113     TextClass.h
114     TextMetrics.h
115     Thesaurus.h
116     TocBackend.h
117     ToolbarBackend.h
118     Trans.h
119     Undo.h
120     VCBackend.h
121     VSpace.h
122     Variables.h
123     WordLangTuple.h
124     buffer_funcs.h
125     factory.h
126     lfuns.h
127     lyxfind.h
128     output.h
129     output_docbook.h
130     output_latex.h
131     output_plaintext.h
132     paper.h
133     paragraph_funcs.h
134     rowpainter.h
135     sgml.h
136     update_flags.h
137     version.h
138     WordList.h
139 ''')
140
141
142 src_pre_files = Split('''
143     Author.cpp
144     BiblioInfo.cpp
145     Bidi.cpp
146     BranchList.cpp
147     Buffer.cpp
148     BufferList.cpp
149     BufferParams.cpp
150     BufferView.cpp
151     Bullet.cpp
152     Changes.cpp
153     Chktex.cpp
154     CmdDef.cpp
155     Color.cpp
156     Converter.cpp
157     ConverterCache.cpp
158     CoordCache.cpp
159     Counters.cpp
160     Cursor.cpp
161     CursorSlice.cpp
162     CutAndPaste.cpp
163     DepTable.cpp
164     DocIterator.cpp
165     EmbeddedFiles.cpp
166     Encoding.cpp
167     ErrorList.cpp
168     Exporter.cpp
169     FloatList.cpp
170     Floating.cpp
171     Font.cpp
172     FontInfo.cpp
173     FontIterator.cpp
174     FontList.cpp
175     Format.cpp
176     FuncRequest.cpp
177     FuncStatus.cpp
178     Graph.cpp
179     InsetIterator.cpp
180     InsetList.cpp
181     Intl.cpp
182     KeyMap.cpp
183     KeySequence.cpp
184     LaTeX.cpp
185     LaTeXFeatures.cpp
186     Language.cpp
187     Layout.cpp
188     LayoutFile.cpp
189     Length.cpp
190     Lexer.cpp
191     LyX.cpp
192     LyXAction.cpp
193     LyXFunc.cpp
194     LyXRC.cpp
195     LyXVC.cpp
196     MetricsInfo.cpp
197     Mover.cpp
198     OutputParams.cpp
199     PDFOptions.cpp
200     ParIterator.cpp
201     Paragraph.cpp
202     ParagraphMetrics.cpp
203     ParagraphParameters.cpp
204     Row.cpp
205     Server.cpp
206     ServerSocket.cpp
207     Session.cpp
208     Spacing.cpp
209     TexRow.cpp
210     Text.cpp
211     Text2.cpp
212     Text3.cpp
213     TextClass.cpp
214     TextMetrics.cpp
215     TocBackend.cpp
216     ToolbarBackend.cpp
217     Trans.cpp
218     Undo.cpp
219     VCBackend.cpp
220     VSpace.cpp
221     boost.cpp
222     buffer_funcs.cpp
223     factory.cpp
224     lengthcommon.cpp
225     lyxfind.cpp
226     output.cpp
227     output_docbook.cpp
228     output_latex.cpp
229     output_plaintext.cpp
230     paragraph_funcs.cpp
231     rowpainter.cpp
232     sgml.cpp
233     version.cpp
234     WordList.cpp
235 ''')
236
237
238 src_post_files = Split('''
239     Box.cpp
240     Dimension.cpp
241     ModuleList.cpp
242     PrinterParams.cpp
243     SpellBase.cpp
244     Thesaurus.cpp
245 ''')
246
247
248 src_extra_src_files = Split('''
249     ASpell.cpp
250     ISpell.cpp
251     PSpell.cpp
252     Section.cpp
253     Variables.cpp
254     main.cpp
255 ''')
256
257
258 src_extra_files = Split('''
259     Makefile.am
260     pch.h
261 ''')
262
263
264 src_client_header_files = Split('''
265     Messages.h
266     debug.h
267 ''')
268
269
270 src_client_files = Split('''
271     Messages.cpp
272     boost.cpp
273     client.cpp
274     debug.cpp
275     gettext.cpp
276 ''')
277
278
279 src_client_extra_files = Split('''
280     Makefile.am
281     lyxclient.man
282     pch.h
283 ''')
284
285
286 src_support_header_files = Split('''
287     ExceptionMessage.h
288     FileFilterList.h
289     FileMonitor.h
290     FileName.h
291     ForkedCalls.h
292     Messages.h
293     Package.h
294     Path.h
295     RandomAccessList.h
296     SignalSlot.h
297     SignalSlotPrivate.h
298     Systemcall.h
299     Timeout.h
300     Translator.h
301     convert.h
302     copied_ptr.h
303     debug.h
304     docstream.h
305     docstring.h
306     environment.h
307     filetools.h
308     foreach.h
309     gettext.h
310     gzstream.h
311     limited_stack.h
312     lstrings.h
313     lyxalgo.h
314     lyxlib.h
315     lyxtime.h
316     os.h
317     os_win32.h
318     qstring_helpers.h
319     socktools.h
320     textutils.h
321     types.h
322     unicode.h
323     userinfo.h
324 ''')
325
326
327 src_support_files = Split('''
328     FileFilterList.cpp
329     FileMonitor.cpp
330     FileName.cpp
331     ForkedCalls.cpp
332     Messages.cpp
333     Package.cpp
334     Path.cpp
335     SignalSlot.cpp
336     SignalSlotPrivate.cpp
337     Systemcall.cpp
338     Timeout.cpp
339     convert.cpp
340     debug.cpp
341     docstream.cpp
342     docstring.cpp
343     environment.cpp
344     filetools.cpp
345     gzstream.cpp
346     gettext.cpp
347     kill.cpp
348     lstrings.cpp
349     lyxsum.cpp
350     lyxtime.cpp
351     os.cpp
352     socktools.cpp
353     unicode.cpp
354     userinfo.cpp
355 ''')
356
357
358 src_support_extra_header_files = Split('''
359     
360 ''')
361
362
363 src_support_extra_src_files = Split('''
364     atexit.c
365     os_cygwin.cpp
366     os_unix.cpp
367     os_win32.cpp
368     strerror.c
369 ''')
370
371
372 src_support_extra_files = Split('''
373     Makefile.am
374     pch.h
375 ''')
376
377
378 src_support_tests_extra_files = Split('''
379     Makefile.am
380     boost.cpp
381     convert.cpp
382     filetools.cpp
383     lstrings.cpp
384     pch.h
385     test_convert
386     test_filetools
387     test_lstrings
388 ''')
389
390
391 src_support_tests_regfiles_extra_files = Split('''
392     convert
393     filetools
394     lstrings
395 ''')
396
397
398 src_support_minizip_header_files = Split('''
399     crypt.h
400     ioapi.h 
401     iowin32.h
402     unzip.h
403     zip.h
404 ''')
405
406
407 src_support_minizip_files = Split('''
408     ioapi.c
409     iowin32.c
410     zip.c
411     zipunzip.cpp
412     unzip.c
413 ''')
414
415
416 src_graphics_header_files = Split('''
417     GraphicsCache.h
418     GraphicsCacheItem.h
419     GraphicsConverter.h
420     GraphicsImage.h
421     GraphicsLoader.h
422     GraphicsParams.h
423     GraphicsTypes.h
424     PreviewImage.h
425     PreviewLoader.h
426     Previews.h
427 ''')
428
429
430 src_graphics_files = Split('''
431     GraphicsCache.cpp
432     GraphicsCacheItem.cpp
433     GraphicsConverter.cpp
434     GraphicsImage.cpp
435     GraphicsLoader.cpp
436     GraphicsParams.cpp
437     GraphicsTypes.cpp
438     PreviewImage.cpp
439     PreviewLoader.cpp
440     Previews.cpp
441 ''')
442
443
444 src_graphics_extra_files = Split('''
445     Makefile.am
446     pch.h
447 ''')
448
449
450 src_mathed_header_files = Split('''
451     CommandInset.h
452     InsetMath.h
453     InsetMathAMSArray.h
454     InsetMathArray.h
455     InsetMathBig.h
456     InsetMathBoldSymbol.h
457     InsetMathBox.h
458     InsetMathBrace.h
459     InsetMathCases.h
460     InsetMathChar.h
461     InsetMathColor.h
462     InsetMathComment.h
463     InsetMathDecoration.h
464     InsetMathDelim.h
465     InsetMathDiff.h
466     InsetMathDots.h
467     InsetMathEnv.h
468     InsetMathExFunc.h
469     InsetMathExInt.h
470     InsetMathFont.h
471     InsetMathFontOld.h
472     InsetMathFrac.h
473     InsetMathGrid.h
474     InsetMathHull.h
475     InsetMathKern.h
476     InsetMathLefteqn.h
477     InsetMathLim.h
478     InsetMathMatrix.h
479     InsetMathNest.h
480     InsetMathNumber.h
481     InsetMathOverset.h
482     InsetMathPar.h
483     InsetMathPhantom.h
484     InsetMathRef.h
485     InsetMathRoot.h
486     InsetMathScript.h
487     InsetMathSize.h
488     InsetMathSpace.h
489     InsetMathSplit.h
490     InsetMathSqrt.h
491     InsetMathStackrel.h
492     InsetMathString.h
493     InsetMathSubstack.h
494     InsetMathSymbol.h
495     InsetMathTabular.h
496     InsetMathUnderset.h
497     InsetMathUnknown.h
498     InsetMathXArrow.h
499     InsetMathXYMatrix.h
500     MacroTable.h
501     MathAtom.h
502     MathAutoCorrect.h
503     MathData.h
504     MathExtern.h
505     MathFactory.h
506     MathGridInfo.h
507     MathMacro.h
508     MathMacroArgument.h
509     MathMacroTemplate.h
510     MathParser.h
511     MathStream.h
512     MathSupport.h
513     ReplaceData.h
514     TextPainter.h
515 ''')
516
517
518 src_mathed_files = Split('''
519     CommandInset.cpp
520     InsetMath.cpp
521     InsetMathAMSArray.cpp
522     InsetMathArray.cpp
523     InsetMathBig.cpp
524     InsetMathBoldSymbol.cpp
525     InsetMathBox.cpp
526     InsetMathBrace.cpp
527     InsetMathCases.cpp
528     InsetMathChar.cpp
529     InsetMathColor.cpp
530     InsetMathComment.cpp
531     InsetMathDecoration.cpp
532     InsetMathDelim.cpp
533     InsetMathDiff.cpp
534     InsetMathDots.cpp
535     InsetMathEnv.cpp
536     InsetMathExFunc.cpp
537     InsetMathExInt.cpp
538     InsetMathFont.cpp
539     InsetMathFontOld.cpp
540     InsetMathFrac.cpp
541     InsetMathGrid.cpp
542     InsetMathHull.cpp
543     InsetMathKern.cpp
544     InsetMathLefteqn.cpp
545     InsetMathLim.cpp
546     InsetMathMatrix.cpp
547     InsetMathNest.cpp
548     InsetMathNumber.cpp
549     InsetMathOverset.cpp
550     InsetMathPar.cpp
551     InsetMathPhantom.cpp
552     InsetMathRef.cpp
553     InsetMathRoot.cpp
554     InsetMathScript.cpp
555     InsetMathSize.cpp
556     InsetMathSpace.cpp
557     InsetMathSplit.cpp
558     InsetMathSqrt.cpp
559     InsetMathStackrel.cpp
560     InsetMathString.cpp
561     InsetMathSubstack.cpp
562     InsetMathSymbol.cpp
563     InsetMathTabular.cpp
564     InsetMathUnderset.cpp
565     InsetMathUnknown.cpp
566     InsetMathXArrow.cpp
567     InsetMathXYMatrix.cpp
568     MacroTable.cpp
569     MathAtom.cpp
570     MathAutoCorrect.cpp
571     MathData.cpp
572     MathExtern.cpp
573     MathFactory.cpp
574     MathMacro.cpp
575     MathMacroArgument.cpp
576     MathMacroTemplate.cpp
577     MathParser.cpp
578     MathStream.cpp
579     MathSupport.cpp
580     TextPainter.cpp
581 ''')
582
583
584 src_mathed_extra_files = Split('''
585     BUGS
586     InsetFormulaMacro.cpp
587     InsetFormulaMacro.h
588     InsetMathMBox.cpp
589     InsetMathMBox.h
590     InsetMathXYArrow.cpp
591     InsetMathXYArrow.h
592     Makefile.am
593     README
594     pch.h
595     texify
596 ''')
597
598
599 src_tex2lyx_header_files = Split('''
600     Context.h
601     Font.h
602     Parser.h
603     Spacing.h
604     tex2lyx.h
605 ''')
606
607
608 src_tex2lyx_files = Split('''
609     Context.cpp
610     Font.cpp
611     Parser.cpp
612     boost.cpp
613     gettext.cpp
614     lengthcommon.cpp
615     math.cpp
616     preamble.cpp
617     table.cpp
618     tex2lyx.cpp
619     text.cpp
620 ''')
621
622
623 src_tex2lyx_copied_header_files = Split('''
624     insets/InsetLayout.h
625 ''')
626
627
628 src_tex2lyx_copied_files = Split('''
629     Color.cpp
630     Counters.cpp
631     FloatList.cpp
632     Floating.cpp
633     Layout.cpp
634     Lexer.cpp
635     TextClass.cpp
636     insets/InsetLayout.cpp
637 ''')
638
639
640 src_tex2lyx_extra_files = Split('''
641     Makefile.am
642     pch.h
643     test-insets.tex
644     test-structure.tex
645     test.ltx
646     tex2lyx.man
647 ''')
648
649
650 src_frontends_header_files = Split('''
651     Application.h
652     Clipboard.h
653     FontLoader.h
654     FontMetrics.h
655     KeyModifier.h
656     KeySymbol.h
657     LyXView.h
658     Painter.h
659     Selection.h
660     WorkArea.h
661     WorkAreaManager.h
662     alert.h
663     mouse_state.h
664 ''')
665
666
667 src_frontends_files = Split('''
668     WorkAreaManager.cpp
669 ''')
670
671
672 src_frontends_extra_files = Split('''
673     Makefile.am
674     pch.h
675 ''')
676
677
678 src_frontends_controllers_extra_files = Split('''
679     Makefile.am
680     pch.h
681 ''')
682
683
684 src_frontends_controllers_tests_extra_files = Split('''
685     Makefile.am
686     biblio.cpp
687     boost.cpp
688     pch.h
689     test_biblio
690 ''')
691
692
693 src_frontends_controllers_tests_regfiles_extra_files = Split('''
694     biblio
695 ''')
696
697
698 src_frontends_qt4_header_files = Split('''
699         ButtonPolicy.h
700         Dialog.h
701     Action.h
702     BulletsModule.h
703     ButtonController.h
704     ColorCache.h
705     CustomizedWidgets.h
706     DialogView.h
707     DockView.h
708     EmptyTable.h
709     FileDialog.h
710     FloatPlacement.h
711     GuiAbout.h
712     GuiApplication.h
713     GuiBibitem.h
714     GuiBibtex.h
715     GuiBox.h
716     GuiBranches.h
717     GuiBranch.h
718     GuiChanges.h
719     GuiCharacter.h
720     GuiCharacter.h
721     GuiCitation.h
722     GuiClipboard.h
723     GuiCommandBuffer.h
724     GuiCommandEdit.h
725     GuiCompleter.h
726     GuiDelimiter.h
727     GuiDialog.h
728     GuiDocument.h
729     GuiErrorList.h
730     GuiERT.h
731     GuiExternal.h
732     GuiFloat.h
733     GuiFontExample.h
734     GuiFontLoader.h
735     GuiGraphics.h
736     GuiGraphicsUi.h
737     GuiHyperlink.h
738     GuiIdListModel.h
739     GuiImage.h
740     GuiInclude.h
741     GuiKeySymbol.h
742     GuiLabel.h
743     GuiListings.h
744     GuiLog.h
745     GuiMath.h
746     GuiMathMatrix.h
747     GuiNomencl.h
748     GuiNote.h
749     GuiPainter.h
750     GuiParagraph.h
751     GuiPrefs.h
752     GuiPrint.h
753     GuiRef.h
754     GuiSearch.h
755     GuiSelection.h
756     GuiSelectionManager.h
757     GuiSendto.h
758     GuiSetBorder.h
759     GuiShowFile.h
760     GuiSpellchecker.h
761     GuiSymbols.h
762     GuiTabularCreate.h
763     GuiTabular.h
764     GuiTexinfo.h
765     GuiThesaurus.h
766     GuiToc.h
767     GuiToolbar.h
768     GuiToolbars.h
769     GuiView.h
770     GuiViewSource.h
771     GuiVSpace.h
772     GuiWorkArea.h
773     GuiWrap.h
774     IconPalette.h
775     InsertTableWidget.h
776     LaTeXHighlighter.h
777     LengthCombo.h
778     LyXFileDialog.h
779     Menus.h
780     PanelStack.h
781     TocModel.h
782     TocWidget.h
783     Validator.h
784     qt_helpers.h
785 ''')
786
787
788 src_frontends_qt4_files = Split('''
789         ButtonPolicy.cpp
790         Dialog.cpp
791     Action.cpp
792     BulletsModule.cpp
793     ButtonController.cpp
794     ColorCache.cpp
795     CustomizedWidgets.cpp
796     EmptyTable.cpp
797     FileDialog.cpp
798     FloatPlacement.cpp
799     GuiAbout.cpp
800     GuiAlert.cpp
801     GuiApplication.cpp
802     GuiBibitem.cpp
803     GuiBibtex.cpp
804     GuiBox.cpp
805     GuiBranch.cpp
806     GuiBranches.cpp
807     GuiChanges.cpp
808     GuiCharacter.cpp
809     GuiCitation.cpp
810     GuiClipboard.cpp
811     GuiCommandBuffer.cpp
812     GuiCommandEdit.cpp
813     GuiCompleter.cpp
814     GuiDelimiter.cpp
815     GuiDialog.cpp
816     GuiDocument.cpp
817     GuiErrorList.cpp
818     GuiERT.cpp
819     GuiExternal.cpp
820     GuiFloat.cpp
821     GuiFontExample.cpp
822     GuiFontLoader.cpp
823     GuiFontMetrics.cpp
824     GuiGraphics.cpp
825     GuiHyperlink.cpp
826     GuiIdListModel.cpp 
827     GuiImage.cpp
828     GuiInclude.cpp
829     GuiKeySymbol.cpp
830     GuiLabel.cpp
831     GuiListings.cpp
832     GuiLog.cpp
833     GuiMath.cpp
834     GuiMathMatrix.cpp
835     GuiNomencl.cpp
836     GuiNote.cpp
837     GuiPainter.cpp
838     GuiParagraph.cpp
839     GuiPrefs.cpp
840     GuiPrint.cpp
841     GuiRef.cpp
842     GuiSearch.cpp
843     GuiSelection.cpp
844     GuiSelectionManager.cpp
845     GuiSendto.cpp
846     GuiSetBorder.cpp
847     GuiShowFile.cpp
848     GuiSpellchecker.cpp
849     GuiSymbols.cpp
850     GuiTabular.cpp
851     GuiTabularCreate.cpp
852     GuiTexinfo.cpp
853     GuiThesaurus.cpp
854     GuiToc.cpp
855     GuiToolbar.cpp
856     GuiToolbars.cpp
857     GuiView.cpp
858     GuiViewSource.cpp
859     GuiVSpace.cpp
860     GuiWorkArea.cpp
861     GuiWrap.cpp
862     IconPalette.cpp
863     InsertTableWidget.cpp
864     LengthCombo.cpp
865     LaTeXHighlighter.cpp
866     LyXFileDialog.cpp
867     Menus.cpp
868     PanelStack.cpp
869     TocModel.cpp
870     TocWidget.cpp
871     Validator.cpp
872     qt_helpers.cpp
873 ''')
874
875
876 src_frontends_qt4_extra_files = Split('''
877     GuiFontMetrics.h
878     Makefile.am
879     README
880     pch.h
881 ''')
882
883
884 src_frontends_qt4_ui_files = Split('''
885     AboutUi.ui
886     AskForTextUi.ui
887     BibitemUi.ui
888     BiblioUi.ui
889     BibtexAddUi.ui
890     BibtexUi.ui
891     BoxUi.ui
892     BranchUi.ui
893     BranchesUi.ui
894     BulletsUi.ui
895     ChangesUi.ui
896     CharacterUi.ui
897     CitationUi.ui
898     DelimiterUi.ui
899     DocumentUi.ui
900     ERTUi.ui
901     ErrorListUi.ui
902     EmbeddedFilesUi.ui
903     ExternalUi.ui
904     FloatPlacementUi.ui
905     FloatUi.ui
906     FontUi.ui
907     GraphicsUi.ui
908     HyperlinkUi.ui
909     IncludeUi.ui
910     LabelUi.ui
911     LaTeXUi.ui
912     LanguageUi.ui
913     ListingsUi.ui
914     LogUi.ui
915     MarginsUi.ui
916     MathMatrixUi.ui
917     MathsUi.ui
918     NomenclUi.ui
919     NoteUi.ui
920     NumberingUi.ui
921     PageLayoutUi.ui
922     ParagraphUi.ui
923     PDFSupportUi.ui
924     PreambleUi.ui
925     PrefColorsUi.ui
926     PrefConvertersUi.ui
927     PrefDateUi.ui
928     PrefDisplayUi.ui
929     PrefFileformatsUi.ui
930     PrefIdentityUi.ui
931     PrefInputUi.ui
932     PrefLanguageUi.ui
933     PrefLatexUi.ui
934     PrefPathsUi.ui
935     PrefPlaintextUi.ui
936     PrefPrinterUi.ui
937     PrefScreenFontsUi.ui
938     PrefShortcutsUi.ui
939     PrefSpellcheckerUi.ui
940     PrefUi.ui
941     PrefsUi.ui
942     PrintUi.ui
943     RefUi.ui
944     SearchUi.ui
945     SendtoUi.ui
946     ShortcutUi.ui
947     ShowFileUi.ui
948     SpellcheckerUi.ui
949     SymbolsUi.ui
950     TabularCreateUi.ui
951     TabularUi.ui
952     TexinfoUi.ui
953     TextLayoutUi.ui
954     ThesaurusUi.ui
955     TocUi.ui
956     VSpaceUi.ui
957     ViewSourceUi.ui
958     WrapUi.ui
959 ''')
960
961
962 src_frontends_qt4_ui_extra_files = Split('''
963     Makefile.am
964     compile_uic.sh
965 ''')
966
967
968 src_insets_header_files = Split('''
969     ExternalSupport.h
970     ExternalTemplate.h
971     ExternalTransforms.h
972     Inset.h
973     InsetBibitem.h
974     InsetBibtex.h
975     InsetBox.h
976     InsetBranch.h
977     InsetCaption.h
978     InsetCitation.h
979     InsetCode.h
980     InsetCollapsable.h
981     InsetCommand.h
982     InsetCommandParams.h
983     InsetERT.h
984     InsetEnvironment.h
985     InsetExternal.h
986     InsetFlex.h
987     InsetFloat.h
988     InsetFloatList.h
989     InsetFoot.h
990     InsetFootlike.h
991     InsetGraphics.h
992     InsetGraphicsParams.h
993     InsetHFill.h
994     InsetHyperlink.h
995     InsetInclude.h
996     InsetIndex.h
997     InsetInfo.h
998     InsetLabel.h
999     InsetLayout.h
1000     InsetLine.h
1001     InsetListings.h
1002     InsetListingsParams.h
1003     InsetMarginal.h
1004     InsetNewline.h
1005     InsetNewpage.h
1006     InsetNomencl.h
1007     InsetNote.h
1008     InsetOptArg.h
1009     InsetQuotes.h
1010     InsetRef.h
1011     InsetSpace.h
1012     InsetSpecialChar.h
1013     InsetTOC.h
1014     InsetTabular.h
1015     InsetText.h
1016     InsetVSpace.h
1017     InsetWrap.h
1018     MailInset.h
1019     RenderBase.h
1020     RenderButton.h
1021     RenderGraphic.h
1022     RenderPreview.h
1023 ''')
1024
1025
1026 src_insets_files = Split('''
1027     ExternalSupport.cpp
1028     ExternalTemplate.cpp
1029     ExternalTransforms.cpp
1030     Inset.cpp
1031     InsetBibitem.cpp
1032     InsetBibtex.cpp
1033     InsetBox.cpp
1034     InsetBranch.cpp
1035     InsetCaption.cpp
1036     InsetCitation.cpp
1037     InsetCollapsable.cpp
1038     InsetCommand.cpp
1039     InsetCommandParams.cpp
1040     InsetERT.cpp
1041     InsetEnvironment.cpp
1042     InsetExternal.cpp
1043     InsetFlex.cpp
1044     InsetFloat.cpp
1045     InsetFloatList.cpp
1046     InsetFoot.cpp
1047     InsetFootlike.cpp
1048     InsetGraphics.cpp
1049     InsetGraphicsParams.cpp
1050     InsetHFill.cpp
1051     InsetHyperlink.cpp
1052     InsetInclude.cpp
1053     InsetIndex.cpp
1054     InsetInfo.cpp
1055     InsetLabel.cpp
1056     InsetLayout.cpp
1057     InsetLine.cpp
1058     InsetListings.cpp
1059     InsetListingsParams.cpp
1060     InsetMarginal.cpp
1061     InsetNewline.cpp
1062     InsetNewpage.cpp
1063     InsetNomencl.cpp
1064     InsetNote.cpp
1065     InsetOptArg.cpp
1066     InsetQuotes.cpp
1067     InsetRef.cpp
1068     InsetSpace.cpp
1069     InsetSpecialChar.cpp
1070     InsetTOC.cpp
1071     InsetTabular.cpp
1072     InsetText.cpp
1073     InsetVSpace.cpp
1074     InsetWrap.cpp
1075     MailInset.cpp
1076     RenderButton.cpp
1077     RenderGraphic.cpp
1078     RenderPreview.cpp
1079 ''')
1080
1081
1082 src_insets_extra_files = Split('''
1083     Makefile.am
1084     pch.h
1085 ''')
1086
1087
1088 intl_header_files = Split('''
1089     eval-plural.h
1090     gettextP.h
1091     gmo.h
1092     hash-string.h
1093     loadinfo.h
1094     localcharset.h
1095     os2compat.h
1096     plural-exp.h
1097     printf-args.h
1098     printf-parse.h
1099     relocatable.h
1100     vasnprintf.h
1101     vasnwprintf.h
1102     wprintf-parse.h
1103     xsize.h
1104 ''')
1105
1106
1107 intl_files = Split('''
1108     bindtextdom.c
1109     dcgettext.c
1110     dcigettext.c
1111     dcngettext.c
1112     dgettext.c
1113     dngettext.c
1114     explodename.c
1115     finddomain.c
1116     gettext.c
1117     intl-compat.c
1118     l10nflist.c
1119     langprefs.c
1120     loadmsgcat.c
1121     localcharset.c
1122     localealias.c
1123     localename.c
1124     log.c
1125     ngettext.c
1126     osdep.c
1127     plural-exp.c
1128     plural.c
1129     printf.c
1130     relocatable.c
1131     textdomain.c
1132 ''')
1133
1134
1135 intl_extra_files = Split('''
1136     VERSION
1137     config.charset
1138     libgnuintl.h.in
1139     locale.alias
1140     os2compat.c
1141     plural.y
1142     printf-args.c
1143     printf-parse.c
1144     ref-add.sin
1145     ref-del.sin
1146     vasnprintf.c
1147 ''')
1148
1149
1150 config_extra_files = Split('''
1151     Makefile.am
1152     common.am
1153     config.guess
1154     config.rpath
1155     config.sub
1156     depcomp
1157     install-sh
1158     libtool.m4
1159     ltmain.sh
1160     lyxinclude.m4
1161     missing
1162     mkinstalldirs
1163     pkg.m4
1164     py-compile
1165     qt4.m4
1166     spell.m4
1167 ''')
1168
1169
1170 sourcedoc_extra_files = Split('''
1171     Doxyfile.in
1172     Makefile.am
1173 ''')
1174
1175
1176 po_extra_files = Split('''
1177     LINGUAS
1178     Makefile.in.in
1179     Makevars
1180     POTFILES.in
1181     README
1182     Rules-quot
1183     bg.po
1184     boldquot.sed
1185     ca.po
1186     cs.po
1187     da.po
1188     de.po
1189     en@boldquot.header
1190     en@quot.header
1191     es.po
1192     eu.po
1193     fi.po
1194     fr.po
1195     gl.po
1196     he.po
1197     hu.po
1198     insert-header.sin
1199     it.po
1200     ja.po
1201     ko.po
1202     lyx_pot.py
1203     nb.po
1204     nl.po
1205     nn.po
1206     pl.po
1207     pocheck.pl
1208     postats.sh
1209     pt.po
1210     quot.sed
1211     remove-potcdate.sin
1212     ro.po
1213     ru.po
1214     sk.po
1215     sl.po
1216     sv.po
1217     tr.po
1218     wa.po
1219     zh_CN.po
1220     zh_TW.po
1221 ''')
1222
1223
1224 lib_files = Split('''
1225     CREDITS
1226     chkconfig.ltx
1227     configure.py
1228     encodings
1229     external_templates
1230     languages
1231     symbols
1232     syntax.default
1233     unicodesymbols
1234 ''')
1235
1236
1237 lib_extra_files = Split('''
1238     Makefile.am
1239     autocorrect
1240     build-listerrors
1241     generate_contributions.py
1242 ''')
1243
1244
1245 lib_kbd_files = Split('''
1246     american-2.kmap
1247     american.kmap
1248     arabic.kmap
1249     bg-bds-1251.kmap
1250     brazil.kmap
1251     brazil2.kmap
1252     czech-prg.kmap
1253     czech.kmap
1254     espanol.kmap
1255     european.kmap
1256     farsi.kmap
1257     francais.kmap
1258     french.kmap
1259     german-2.kmap
1260     german-3.kmap
1261     german.kmap
1262     greek.kmap
1263     hebrew.kmap
1264     koi8-r.kmap
1265     koi8-u.kmap
1266     latvian.kmap
1267     magyar-2.kmap
1268     magyar-3.kmap
1269     magyar.kmap
1270     null.kmap
1271     polish.kmap
1272     polski.kmap
1273     portuges.kmap
1274     romanian.kmap
1275     serbian.kmap
1276     serbocroatian.kmap
1277     sf.kmap
1278     sg.kmap
1279     slovak.kmap
1280     slovene.kmap
1281     thai-kedmanee.kmap
1282     transilvanian.kmap
1283     turkish-f.kmap
1284     turkish.kmap
1285 ''')
1286
1287
1288 lib_templates_files = Split('''
1289     IEEEtran.lyx
1290     README.new_templates
1291     aa.lyx
1292     aastex.lyx
1293     agu_article.lyx
1294     apa.lyx
1295     beamer-conference-ornate-20min.lyx
1296     de_beamer-conference-ornate-20min.lyx
1297     dinbrief.lyx
1298     docbook_article.lyx
1299     elsart.lyx
1300     fr_beamer-conference-ornate-20min.lyx
1301     g-brief-de.lyx
1302     g-brief-en.lyx
1303     g-brief2.lyx
1304     hollywood.lyx
1305     ijmpc.lyx
1306     ijmpd.lyx
1307     iop-article.lyx
1308     kluwer.lyx
1309     koma-letter2.lyx
1310     latex8.lyx
1311     letter.lyx
1312     revtex.lyx
1313     revtex4.lyx
1314     slides.lyx
1315 ''')
1316
1317
1318 lib_ui_files = Split('''
1319     classic.ui
1320     default.ui
1321     stdmenus.inc
1322     stdtoolbars.inc
1323 ''')
1324
1325
1326 lib_fonts_files = Split('''
1327     BaKoMaFontLicense.txt
1328     ReadmeBaKoMa4LyX.txt
1329     cmex10.ttf
1330     cmmi10.ttf
1331     cmr10.ttf
1332     cmsy10.ttf
1333     esint10.ttf
1334     eufm10.ttf
1335     msam10.ttf
1336     msbm10.ttf
1337     wasy10.ttf
1338 ''')
1339
1340
1341 lib_images_files = Split('''
1342     all-changes-accept.png
1343     all-changes-reject.png
1344     amssymb.png
1345     banner.png
1346     bookmark-goto.png
1347     bookmark-save.png
1348     box-insert.png
1349     break-line.png
1350     buffer-close.png
1351     buffer-export_dvi.png
1352     buffer-export_latex.png
1353     buffer-export_pdf2.png
1354     buffer-export_ps.png
1355     buffer-export_text.png
1356     buffer-new.png
1357     buffer-reload.png
1358     buffer-update_dvi.png
1359     buffer-update_pdf2.png
1360     buffer-update_ps.png
1361     buffer-view_dvi.png
1362     buffer-view_pdf2.png
1363     buffer-view_ps.png
1364     buffer-write-as.png
1365     buffer-write.png
1366     build-program.png
1367     change-accept.png
1368     change-next.png
1369     change-reject.png
1370     changes-merge.png
1371     changes-output.png
1372     changes-track.png
1373     closetab.png
1374     copy.png
1375     cut.png
1376     demote.png
1377     depth-decrement.png
1378     depth-increment.png
1379     dialog-preferences.png
1380     dialog-show-new-inset_citation.png
1381     dialog-show-new-inset_graphics.png
1382     dialog-show-new-inset_include.png
1383     dialog-show-new-inset_ref.png
1384     dialog-show_character.png
1385     dialog-show_findreplace.png
1386     dialog-show_mathdelimiter.png
1387     dialog-show_mathmatrix.png
1388     dialog-show_print.png
1389     dialog-show_spellchecker.png
1390     dialog-toggle_toc.png
1391     down.png
1392     ert-insert.png
1393     file-open.png
1394     float-insert_figure.png
1395     float-insert_table.png
1396     font-bold.png
1397     font-emph.png
1398     font-free-apply.png
1399     font-noun.png
1400     font-sans.png
1401     footnote-insert.png
1402     href-insert.png
1403     hidetab.png
1404     index-insert.png
1405     label-insert.png
1406     layout-document.png
1407     layout-paragraph.png
1408     layout.png
1409     layout_Description.png
1410     layout_Enumerate.png
1411     layout_Itemize.png
1412     layout_List.png
1413     layout_LyX-Code.png
1414     layout_Scrap.png
1415     layout_Section.png
1416     lyx-quit.png
1417     lyx.png
1418     marginalnote-insert.png
1419     math-display.png
1420     math-macro-add-greedy-optional-param.png
1421     math-macro-add-optional-param.png
1422     math-macro-add-param.png
1423     math-macro-append-greedy-param.png
1424     math-macro-make-nonoptional.png
1425     math-macro-make-optional.png
1426     math-macro-remove-greedy-param.png
1427     math-macro-remove-optional-param.png
1428     math-macro-remove-param.png
1429     math-macro_newmacroname_newcommand.png
1430     math-matrix.png
1431     math-mode.png
1432     math-subscript.png
1433     math-superscript.png
1434     nomencl-insert.png
1435     note-insert.png
1436     note-next.png
1437     paste.png
1438     promote.png
1439     pin.png
1440     psnfss1.png
1441     psnfss2.png
1442     psnfss3.png
1443     psnfss4.png
1444     redo.png
1445     reload.png
1446     standard.png
1447     tabular-feature_align-center.png
1448     tabular-feature_align-left.png
1449     tabular-feature_align-right.png
1450     tabular-feature_append-column.png
1451     tabular-feature_append-row.png
1452     tabular-feature_delete-column.png
1453     tabular-feature_delete-row.png
1454     tabular-feature_multicolumn.png
1455     tabular-feature_set-all-lines.png
1456     tabular-feature_set-longtabular.png
1457     tabular-feature_set-rotate-cell.png
1458     tabular-feature_toggle-rotate-cell.png
1459     tabular-feature_set-rotate-tabular.png
1460     tabular-feature_toggle-rotate-tabular.png
1461     tabular-feature_toggle-line-bottom.png
1462     tabular-feature_toggle-line-left.png
1463     tabular-feature_toggle-line-right.png
1464     tabular-feature_toggle-line-top.png
1465     tabular-feature_unset-all-lines.png
1466     tabular-feature_valign-bottom.png
1467     tabular-feature_valign-middle.png
1468     tabular-feature_valign-top.png
1469     tabular-insert.png
1470     thesaurus-entry.png
1471     toolbar-toggle_math.png
1472     toolbar-toggle_math_panels.png
1473     toolbar-toggle_table.png
1474     undo.png
1475     unknown.png
1476     up.png
1477     url-insert.png
1478 ''')
1479
1480
1481 lib_images_extra_files = Split('''
1482     README
1483     font-smallcaps.png
1484 ''')
1485
1486
1487 lib_images_math_files = Split('''
1488     Bbbk.png
1489     Finv.png
1490     Game.png
1491     Im.png
1492     Lleftarrow.png
1493     Lsh.png
1494     Re.png
1495     Rrightarrow.png
1496     Rsh.png
1497     Vert.png
1498     Vvdash.png
1499     acute.png
1500     aleph.png
1501     alpha.png
1502     amalg.png
1503     angle.png
1504     approx.png
1505     approxeq.png
1506     asymp.png
1507     backepsilon.png
1508     backprime.png
1509     backsim.png
1510     backsimeq.png
1511     backslash.png
1512     bar.png
1513     bars.png
1514     barwedge.png
1515     because.png
1516     beta.png
1517     beth.png
1518     between.png
1519     bigcap.png
1520     bigcirc.png
1521     bigcup.png
1522     bigodot.png
1523     bigoplus.png
1524     bigotimes.png
1525     bigsqcup.png
1526     bigstar.png
1527     bigtriangledown.png
1528     bigtriangleup.png
1529     biguplus.png
1530     bigvee.png
1531     bigwedge.png
1532     blacklozenge.png
1533     blacksquare.png
1534     blacktriangle.png
1535     blacktriangledown.png
1536     blacktriangleleft.png
1537     blacktriangleright.png
1538     bot.png
1539     bowtie.png
1540     boxdot.png
1541     boxminus.png
1542     boxplus.png
1543     boxtimes.png
1544     breve.png
1545     bullet.png
1546     bumpeq.png
1547     bumpeq2.png
1548     cap.png
1549     cap2.png
1550     cases.png
1551     cdot.png
1552     cdots.png
1553     centerdot.png
1554     check.png
1555     chi.png
1556     circ.png
1557     circeq.png
1558     circlearrowleft.png
1559     circlearrowright.png
1560     circledS.png
1561     circledast.png
1562     circledcirc.png
1563     circleddash.png
1564     clubsuit.png
1565     complement.png
1566     cong.png
1567     coprod.png
1568     cup.png
1569     cup2.png
1570     curlyeqprec.png
1571     curlyeqsucc.png
1572     curlyvee.png
1573     curlywedge.png
1574     curvearrowleft.png
1575     curvearrowright.png
1576     dagger.png
1577     daleth.png
1578     dashleftarrow.png
1579     dashrightarrow.png
1580     dashv.png
1581     ddagger.png
1582     ddot.png
1583     ddots.png
1584     delim.png
1585     delta.png
1586     delta2.png
1587     diagdown.png
1588     diagup.png
1589     diamond.png
1590     diamondsuit.png
1591     digamma.png
1592     div.png
1593     divideontimes.png
1594     dot.png
1595     doteq.png
1596     doteqdot.png
1597     dotplus.png
1598     dotsint.png
1599     dotsintop.png
1600     doublebarwedge.png
1601     downarrow.png
1602     downarrow2.png
1603     downdownarrows.png
1604     downharpoonleft.png
1605     downharpoonright.png
1606     ell.png
1607     empty.png
1608     emptyset.png
1609     epsilon.png
1610     eqcirc.png
1611     eqslantgtr.png
1612     eqslantless.png
1613     equation.png
1614     equiv.png
1615     eta.png
1616     eth.png
1617     exists.png
1618     fallingdotseq.png
1619     flat.png
1620     font.png
1621     forall.png
1622     frac-square.png
1623     frac.png
1624     frown.png
1625     functions.png
1626     gamma.png
1627     gamma2.png
1628     geq.png
1629     geqq.png
1630     geqslant.png
1631     gg.png
1632     ggg.png
1633     gimel.png
1634     gnapprox.png
1635     gneq.png
1636     gneqq.png
1637     gnsim.png
1638     grave.png
1639     gtrapprox.png
1640     gtrdot.png
1641     gtreqless.png
1642     gtreqqless.png
1643     gtrless.png
1644     gtrsim.png
1645     gvertneqq.png
1646     hat.png
1647     hbar.png
1648     heartsuit.png
1649     hookleftarrow.png
1650     hookrightarrow.png
1651     hphantom.png
1652     hslash.png
1653     iiiint.png
1654     iiiintop.png
1655     iiint.png
1656     iiintop.png
1657     iint.png
1658     iintop.png
1659     imath.png
1660     in.png
1661     infty.png
1662     int.png
1663     intercal.png
1664     intop.png
1665     iota.png
1666     jmath.png
1667     kappa.png
1668     lambda.png
1669     lambda2.png
1670     langle.png
1671     lbrace.png
1672     lbrace_rbrace.png
1673     lbracket.png
1674     lbracket_rbracket.png
1675     lceil.png
1676     lceil_rceil.png
1677     ldots.png
1678     leftarrow.png
1679     leftarrow2.png
1680     leftarrowtail.png
1681     leftharpoondown.png
1682     leftharpoonup.png
1683     leftleftarrows.png
1684     leftrightarrow.png
1685     leftrightarrow2.png
1686     leftrightarrows.png
1687     leftrightharpoons.png
1688     leftrightsquigarrow.png
1689     leftthreetimes.png
1690     leq.png
1691     leqq.png
1692     leqslant.png
1693     lessapprox.png
1694     lessdot.png
1695     lesseqgtr.png
1696     lesseqqgtr.png
1697     lessgtr.png
1698     lesssim.png
1699     lfloor.png
1700     lfloor_rfloor.png
1701     ll.png
1702     llcorner.png
1703     lll.png
1704     lnapprox.png
1705     lneq.png
1706     lneqq.png
1707     lnsim.png
1708     longleftarrow.png
1709     longleftarrow2.png
1710     longleftrightarrow.png
1711     longleftrightarrow2.png
1712     longmapsto.png
1713     longrightarrow.png
1714     longrightarrow2.png
1715     looparrowleft.png
1716     looparrowright.png
1717     lozenge.png
1718     lparen.png
1719     lparen_rparen.png
1720     lrcorner.png
1721     ltimes.png
1722     lvertneqq.png
1723     mapsto.png
1724     mathbb_C.png
1725     mathbb_H.png
1726     mathbb_N.png
1727     mathbb_Q.png
1728     mathbb_R.png
1729     mathbb_Z.png
1730     mathcal_F.png
1731     mathcal_H.png
1732     mathcal_L.png
1733     mathcal_O.png
1734     mathcircumflex.png
1735     mathrm_T.png
1736     matrix.png
1737     measuredangle.png
1738     mho.png
1739     mid.png
1740     models.png
1741     mp.png
1742     mu.png
1743     multimap.png
1744     nabla.png
1745     natural.png
1746     ncong.png
1747     nearrow.png
1748     neg.png
1749     neq.png
1750     nexists.png
1751     ngeq.png
1752     ngeqq.png
1753     ngeqslant.png
1754     ngtr.png
1755     ni.png
1756     nleftarrow.png
1757     nleftarrow2.png
1758     nleftrightarrow.png
1759     nleftrightarrow2.png
1760     nleq.png
1761     nleqq.png
1762     nleqslant.png
1763     nless.png
1764     nmid.png
1765     notin.png
1766     nparallel.png
1767     nprec.png
1768     npreceq.png
1769     nrightarrow.png
1770     nrightarrow2.png
1771     nshortmid.png
1772     nshortparallel.png
1773     nsim.png
1774     nsubseteq.png
1775     nsucc.png
1776     nsucceq.png
1777     nsupseteq.png
1778     nsupseteqq.png
1779     ntriangleleft.png
1780     ntrianglelefteq.png
1781     ntriangleright.png
1782     ntrianglerighteq.png
1783     nu.png
1784     nvdash.png
1785     nvdash2.png
1786     nvdash3.png
1787     nwarrow.png
1788     odot.png
1789     oiint.png
1790     oiintop.png
1791     oint.png
1792     ointclockwise.png
1793     ointclockwiseop.png
1794     ointctrclockwise.png
1795     ointctrclockwiseop.png
1796     ointop.png
1797     omega.png
1798     omega2.png
1799     ominus.png
1800     oplus.png
1801     oslash.png
1802     otimes.png
1803     overbrace.png
1804     overleftarrow.png
1805     overleftrightarrow.png
1806     overline.png
1807     overrightarrow.png
1808     overset.png
1809     parallel.png
1810     partial.png
1811     perp.png
1812     phantom.png
1813     phi.png
1814     phi2.png
1815     pi.png
1816     pi2.png
1817     pitchfork.png
1818     pm.png
1819     prec.png
1820     precapprox.png
1821     preccurlyeq.png
1822     preceq.png
1823     precnapprox.png
1824     precnsim.png
1825     precsim.png
1826     prime.png
1827     prod.png
1828     propto.png
1829     psi.png
1830     psi2.png
1831     rangle.png
1832     rbrace.png
1833     rbracket.png
1834     rceil.png
1835     rfloor.png
1836     rho.png
1837     rightarrow.png
1838     rightarrow2.png
1839     rightarrowtail.png
1840     rightharpoondown.png
1841     rightharpoonup.png
1842     rightleftarrows.png
1843     rightleftharpoons.png
1844     rightrightarrows.png
1845     rightsquigarrow.png
1846     rightthreetimes.png
1847     risingdotseq.png
1848     root.png
1849     rparen.png
1850     rtimes.png
1851     searrow.png
1852     setminus.png
1853     sharp.png
1854     shortmid.png
1855     shortparallel.png
1856     sigma.png
1857     sigma2.png
1858     sim.png
1859     simeq.png
1860     slash.png
1861     smallfrown.png
1862     smallsetminus.png
1863     smallsmile.png
1864     smile.png
1865     space.png
1866     spadesuit.png
1867     sphericalangle.png
1868     sqcap.png
1869     sqcup.png
1870     sqiint.png
1871     sqiintop.png
1872     sqint.png
1873     sqintop.png
1874     sqrt-square.png
1875     sqrt.png
1876     sqsubset.png
1877     sqsubseteq.png
1878     sqsupset.png
1879     sqsupseteq.png
1880     square.png
1881     star.png
1882     style.png
1883     style.png
1884     sub.png
1885     subset.png
1886     subset2.png
1887     subseteq.png
1888     subseteqq.png
1889     subsetneq.png
1890     subsetneqq.png
1891     succ.png
1892     succapprox.png
1893     succcurlyeq.png
1894     succeq.png
1895     succnapprox.png
1896     succnsim.png
1897     succsim.png
1898     sum.png
1899     super.png
1900     supset.png
1901     supset2.png
1902     supseteq.png
1903     supseteqq.png
1904     supsetneq.png
1905     supsetneqq.png
1906     surd.png
1907     swarrow.png
1908     tau.png
1909     textrm_AA.png
1910     textrm_O.png
1911     therefore.png
1912     theta.png
1913     theta2.png
1914     thickapprox.png
1915     thicksim.png
1916     tilde.png
1917     times.png
1918     top.png
1919     triangle.png
1920     triangledown.png
1921     triangleleft.png
1922     trianglelefteq.png
1923     triangleq.png
1924     triangleright.png
1925     trianglerighteq.png
1926     twoheadleftarrow.png
1927     twoheadrightarrow.png
1928     ulcorner.png
1929     underbrace.png
1930     underleftarrow.png
1931     underleftrightarrow.png
1932     underline.png
1933     underrightarrow.png
1934     underscore.png
1935     underset.png
1936     uparrow.png
1937     uparrow2.png
1938     updownarrow.png
1939     updownarrow2.png
1940     upharpoonleft.png
1941     upharpoonright.png
1942     uplus.png
1943     upsilon.png
1944     upsilon2.png
1945     upuparrows.png
1946     urcorner.png
1947     varepsilon.png
1948     varkappa.png
1949     varnothing.png
1950     varphi.png
1951     varpi.png
1952     varpropto.png
1953     varrho.png
1954     varsigma.png
1955     varsubsetneq.png
1956     varsubsetneqq.png
1957     varsupsetneq.png
1958     varsupsetneqq.png
1959     vartheta.png
1960     vartriangle.png
1961     vartriangleleft.png
1962     vartriangleright.png
1963     vdash.png
1964     vdash2.png
1965     vdash3.png
1966     vdots.png
1967     vec.png
1968     vee.png
1969     veebar.png
1970     vphantom.png
1971     wedge.png
1972     widehat.png
1973     widetilde.png
1974     wp.png
1975     wr.png
1976     xi.png
1977     xi2.png
1978     zeta.png
1979 ''')
1980
1981
1982 lib_images_math_extra_files = Split('''
1983     ams_arrows.png
1984     ams_misc.png
1985     ams_nrel.png
1986     ams_ops.png
1987     ams_rel.png
1988     arrows.png
1989     bop.png
1990     brel.png
1991     deco.png
1992     deco.png
1993     delim.png
1994     delim0.png
1995     delim1.png
1996     dots.png
1997     font.png
1998     functions.png
1999     greek.png
2000     misc.png
2001     varsz.png
2002 ''')
2003
2004
2005 lib_images_commands_files = Split('''
2006 ''')
2007
2008
2009 lib_images_attic_extra_files = Split('''
2010     dialog-show_mathpanel.png
2011 ''')
2012
2013
2014 lib_tex_files = Split('''
2015     broadway.cls
2016     hollywood.cls
2017     lyxchess.sty
2018     lyxskak.sty
2019     revtex.cls
2020 ''')
2021
2022
2023 lib_doc_files = Split('''
2024     Customization.lyx
2025     DocStyle.lyx
2026     DummyDocument1.lyx
2027     DummyDocument2.lyx
2028     DummyTextDocument.txt
2029     EmbeddedObjects.lyx
2030     Extended.lyx
2031     FAQ.lyx
2032     Formula-numbering.lyx
2033     Intro.lyx
2034     LaTeXConfig.lyx
2035     Math.lyx
2036     Reference.lyx
2037     Shortcuts.lyx
2038     Tutorial.lyx
2039     UserGuide.lyx
2040 ''')
2041
2042
2043 lib_doc_biblio_files = Split('''
2044     alphadin.bst
2045     LyXDocs.bib
2046 ''')
2047
2048
2049 lib_doc_clipart_files = Split('''
2050     Abstract.pdf
2051     BoxInsetDefaultQt4.png
2052     ChangesToolbar.png
2053     ChildDocumentQt4.png
2054     CommentNoteImageQt4.png
2055     ERT.png
2056     ExternalMaterialQt4.png
2057     ExtraToolbar.png
2058     FramedNoteImageQt4.png
2059     GreyedOutNoteImageQt4.png
2060     LaTeX.png
2061     LyXNoteImageQt4.png
2062     ShadedNoteImageQt4.png
2063     SpaceMarker.png
2064     StandardToolbar.png
2065     ToolbarEnvBox.png
2066     endnotes.pdf
2067     escher-lsd.eps
2068     floatQt4.png
2069     footnoteQt4.png
2070     labelQt4.png
2071     macrobox.png
2072     macrouse.png
2073     mbox.png
2074     mobius.eps
2075     platypus.eps
2076     referenceQt4.png
2077     ViewToolbar.png
2078     with_fntright.pdf
2079     without_fntright.pdf
2080 ''')
2081
2082
2083 lib_doc_extra_files = Split('''
2084     Makefile.am
2085     Makefile.depend
2086     README.Documentation
2087     depend.py
2088     doc_toc.py
2089 ''')
2090
2091
2092 lib_doc_cs_files = Split('''
2093     Tutorial.lyx
2094 ''')
2095
2096
2097 lib_doc_de_files = Split('''
2098     Customization.lyx
2099     DummyDocument1.lyx
2100     DummyDocument2.lyx
2101     DummyTextDocument.txt
2102     EmbeddedObjects.lyx
2103     Extended.lyx
2104     FAQ.lyx
2105     Formelnummerierung.lyx
2106     Intro.lyx
2107     Math.lyx
2108     Tutorial.lyx
2109     UserGuide.lyx
2110 ''')
2111
2112
2113 lib_doc_de_clipart_files = Split('''
2114     ERT.png
2115     ExternesMaterialQt4.png
2116     FussnoteQt4.png
2117     GerahmteNotizQt4.png
2118     GleitobjektQt4.png
2119     GrauschriftNotizQt4.png
2120     KommentarQt4.png
2121     LyXNotizQt4.png
2122     Marke.png
2123     Querverweis.png
2124     SchattierteNotizQt4.png
2125     StandardBoxQt4.png
2126     UnterdokumentQt4.png
2127 ''')
2128
2129
2130 lib_doc_da_files = Split('''
2131     Intro.lyx
2132 ''')
2133
2134
2135 lib_doc_es_files = Split('''
2136     DocumentoPostizo1.lyx
2137     DocumentoPostizo2.lyx
2138     DocumentoTextoPostizo.txt
2139     EmbeddedObjects.lyx
2140     Extended.lyx
2141     FAQ.lyx
2142     Formula-numbering.lyx
2143     Intro.lyx
2144     Math.lyx
2145     Tutorial.lyx
2146     UserGuide.lyx
2147 ''')
2148
2149
2150 lib_doc_es_clipart_files = Split('''
2151     ComentNotaImagenQt4.png
2152     CuadroMinipagQt4.png
2153     DocumentoHijoQt4.png
2154     GrisNotaImagenQt4.png
2155     MaterialExternoQt4.png
2156     NotaEnmarcadaImg.png
2157     NotaLyXImagenQt4.png
2158     NotaSombreadaImg.png
2159     Resumen.pdf
2160     es_ERT.png
2161     etiquetaQt4.png
2162     flotanteQt4.png
2163     notapieQt4.png
2164     referenciaQt4.png
2165 ''')
2166
2167
2168 lib_doc_eu_files = Split('''
2169     Customization.lyx
2170     Extended.lyx
2171     FAQ.lyx
2172     Intro.lyx
2173     Tutorial.lyx
2174     UserGuide.lyx
2175 ''')
2176
2177
2178 lib_doc_fr_files = Split('''
2179     Customization.lyx
2180     DocumentBidon1.lyx
2181     DocumentBidon2.lyx
2182     DocumentTexteBidon.txt
2183     EmbeddedObjects.lyx
2184     Extended.lyx
2185     FAQ.lyx
2186     Formula-numbering.lyx
2187     Intro.lyx
2188     Math.lyx
2189     Tutorial.lyx
2190     UserGuide.lyx
2191 ''')
2192
2193
2194 lib_doc_fr_clipart_files = Split('''
2195     BoxInsetDefaultQt4.png
2196     ChildDocumentQt4.png
2197     CommentNoteImageQt4.png
2198     FramedNoteImageQt4.png
2199     GreyedOutNoteImageQt4.png
2200     LyXNoteImageQt4.png
2201     ShadedNoteImageQt4.png
2202     floatQt4.png
2203     footnoteQt4.png
2204     labelQt4.png
2205 ''')
2206
2207
2208 lib_doc_gl_extra_files = Split('''
2209     Intro.lyx
2210     Tutorial.lyx
2211 ''')
2212
2213
2214 lib_doc_he_files = Split('''
2215     Intro.lyx
2216     Tutorial.lyx
2217 ''')
2218
2219
2220 lib_doc_hu_files = Split('''
2221     Intro.lyx
2222     Tutorial.lyx
2223 ''')
2224
2225
2226 lib_doc_it_files = Split('''
2227     Customization.lyx
2228     Intro.lyx
2229     Tutorial.lyx
2230     UserGuide.lyx
2231 ''')
2232
2233
2234 lib_doc_nb_files = Split('''
2235     Intro.lyx
2236 ''')
2237
2238
2239 lib_doc_nl_files = Split('''
2240     Intro.lyx
2241     Tutorial.lyx
2242 ''')
2243
2244
2245 lib_doc_pl_files = Split('''
2246     Extended.lyx
2247     Intro.lyx
2248     Tutorial.lyx
2249 ''')
2250
2251
2252 lib_doc_pt_files = Split('''
2253     Intro.lyx
2254     Tutorial.lyx
2255 ''')
2256
2257
2258 lib_doc_ro_files = Split('''
2259     Intro.lyx
2260 ''')
2261
2262
2263 lib_doc_ru_files = Split('''
2264     FAQ.lyx
2265     Intro.lyx
2266     Tutorial.lyx
2267 ''')
2268
2269
2270 lib_doc_sl_files = Split('''
2271     Intro.lyx
2272     Tutorial.lyx
2273 ''')
2274
2275
2276 lib_doc_sk_files = Split('''
2277     Tutorial.lyx
2278     UserGuide.lyx
2279 ''')
2280
2281
2282 lib_doc_sv_files = Split('''
2283     Intro.lyx
2284     Tutorial.lyx
2285 ''')
2286
2287
2288 lib_examples_files = Split('''
2289     Braille.lyx
2290     CV-image.eps
2291     CV-image.png
2292     Foils.lyx
2293     ItemizeBullets.lyx
2294     Literate.lyx
2295     Minipage.lyx
2296     aa_sample.lyx
2297     aas_sample.lyx
2298     addressExample.adr
2299     amsart-test.lyx
2300     amsbook-test.lyx
2301     armenian-article.lyx
2302     beamer-g4-mask.jpg
2303     beamer-g4.jpg
2304     beamer-icsi-logo.pdf
2305     beamer-knight1-mask.png
2306     beamer-knight1.png
2307     beamer-knight2-mask.png
2308     beamer-knight2.png
2309     beamer-knight3-mask.png
2310     beamer-knight3.png
2311     beamer-knight4-mask.png
2312     beamer-knight4.png
2313     beamerlyxexample1.lyx
2314     biblioExample.bib
2315     chess-article.lyx
2316     chessgame.lyx
2317     docbook_article.lyx
2318     europeCV.lyx
2319     example_lyxified.lyx
2320     example_raw.lyx
2321     iecc05.fen
2322     iecc07.fen
2323     iecc12.fen
2324     landslide.lyx
2325     linguistics.lyx
2326     listerrors.lyx
2327     listings.lyx
2328     modernCV.lyx
2329     multicol.lyx
2330     noweb2lyx.lyx
2331     powerdot-example.lyx
2332     script_form.lyx
2333     serial_letter1.lyx
2334     serial_letter2.lyx
2335     serial_letter3.lyx
2336     simplecv.lyx
2337     splash.lyx
2338 ''')
2339
2340
2341 lib_examples_ca_files = Split('''
2342     splash.lyx
2343 ''')
2344
2345
2346 lib_examples_cs_files = Split('''
2347     splash.lyx
2348 ''')
2349
2350
2351 lib_examples_da_files = Split('''
2352     splash.lyx
2353 ''')
2354
2355
2356 lib_examples_de_files = Split('''
2357     Dezimal.lyx
2358     ItemizeBullets.lyx
2359     Lebenslauf.lyx
2360     Minipage.lyx
2361     beispiel_gelyxt.lyx
2362     beispiel_roh.lyx
2363     multicol.lyx
2364     serienbrief1.lyx
2365     serienbrief2.lyx
2366     serienbrief3.lyx
2367     splash.lyx
2368 ''')
2369
2370
2371 lib_examples_fa_files = Split('''
2372     splash.lyx
2373 ''')
2374
2375
2376 lib_examples_fr_files = Split('''
2377     AlignementDecimal.lyx
2378     Foils.lyx
2379     ListesPuces.lyx
2380     Minipage.lyx
2381     exemple_brut.lyx
2382     exemple_lyxifie.lyx
2383     multicol.lyx
2384     simplecv.lyx
2385     splash.lyx
2386 ''')
2387
2388
2389 lib_examples_es_files = Split('''
2390     ItemizeBullets.lyx
2391     ejemplo_con_lyx.lyx
2392     ejemplo_sin_lyx.lyx
2393     mathed.lyx
2394     splash.lyx
2395 ''')
2396
2397
2398 lib_examples_eu_files = Split('''
2399     adibide_gordina.lyx
2400     adibide_lyx-atua.lyx
2401     splash.lyx
2402 ''')
2403
2404
2405 lib_examples_gl_extra_files = Split('''
2406     exemplo_bruto.lyx
2407     exemplo_lyxificado.lyx
2408     splash.lyx
2409 ''')
2410
2411
2412 lib_examples_he_files = Split('''
2413     example_lyxified.lyx
2414     example_raw.lyx
2415     splash.lyx
2416 ''')
2417
2418
2419 lib_examples_hu_files = Split('''
2420     example_lyxified.lyx
2421     example_raw.lyx
2422     splash.lyx
2423 ''')
2424
2425
2426 lib_examples_it_files = Split('''
2427     ItemizeBullets.lyx
2428     splash.lyx
2429 ''')
2430
2431
2432 lib_examples_ja_files = Split('''
2433     splash.lyx
2434 ''')
2435
2436
2437 lib_examples_nl_files = Split('''
2438     multicol.lyx
2439     opsommingstekens.lyx
2440     splash.lyx
2441     voorbeeld_ruw.lyx
2442     voorbeeld_verlyxt.lyx
2443 ''')
2444
2445
2446 lib_examples_pl_files = Split('''
2447     splash.lyx
2448 ''')
2449
2450
2451 lib_examples_pt_files = Split('''
2452     splash.lyx
2453 ''')
2454
2455
2456 lib_examples_ro_files = Split('''
2457     splash.lyx
2458 ''')
2459
2460
2461 lib_examples_ru_files = Split('''
2462     splash.lyx
2463 ''')
2464
2465
2466 lib_examples_sl_files = Split('''
2467     primer_lyxan.lyx
2468     primer_surov.lyx
2469     splash.lyx
2470 ''')
2471
2472
2473 lib_lyx2lyx_files = Split('''
2474     LyX.py
2475     generate_encoding_info.py
2476     lyx2lyx
2477     lyx2lyx_lang.py
2478     lyx_0_06.py
2479     lyx_0_08.py
2480     lyx_0_10.py
2481     lyx_0_12.py
2482     lyx_1_0.py
2483     lyx_1_1.py
2484     lyx_1_1_5.py
2485     lyx_1_1_6_0.py
2486     lyx_1_1_6_3.py
2487     lyx_1_2.py
2488     lyx_1_3.py
2489     lyx_1_4.py
2490     lyx_1_5.py
2491     lyx_1_6.py
2492     parser_tools.py
2493     profiling.py
2494     test_parser_tools.py
2495 ''')
2496
2497
2498 lib_lyx2lyx_extra_files = Split('''
2499     Makefile.am
2500     lyx2lyx_version.py.in
2501 ''')
2502
2503
2504 lib_layouts_files = Split('''
2505     IEEEtran.layout
2506     aa.layout
2507     aapaper.layout
2508     aastex.layout
2509     agu-dtd.layout
2510     agums.layout
2511     amsart.layout
2512     amsbook.layout
2513     apa.layout
2514     arab-article.layout
2515     armenian-article.layout
2516     article.layout
2517     beamer.layout
2518     book.layout
2519     broadway.layout
2520     chess.layout
2521     cl2emult.layout
2522     dinbrief.layout
2523     docbook-book.layout
2524     docbook-chapter.layout
2525     docbook-section.layout
2526     docbook.layout
2527     dtk.layout
2528     egs.layout
2529     elsart.layout
2530     entcs.layout
2531     europecv.layout
2532     extarticle.layout
2533     extbook.layout
2534     extletter.layout
2535     extreport.layout
2536     foils.layout
2537     g-brief-de.layout
2538     g-brief-en.layout
2539     g-brief2.layout
2540     heb-article.layout
2541     heb-letter.layout
2542     hollywood.layout
2543     ijmpc.layout
2544     ijmpd.layout
2545     iopart.layout
2546     isprs.layout
2547     jarticle.layout
2548     jbook.layout
2549     jgrga.layout
2550     jreport.layout
2551     jsarticle.layout
2552     jsbook.layout
2553     kluwer.layout
2554     latex8.layout
2555     letter.layout
2556     literate-article.layout
2557     literate-book.layout
2558     literate-report.layout
2559     llncs.layout
2560     ltugboat.layout
2561     manpage.layout
2562     memoir.layout
2563     moderncv.layout
2564     mwart.layout
2565     mwbk.layout
2566     mwrep.layout
2567     paper.layout
2568     powerdot.layout
2569     report.layout
2570     revtex.layout
2571     revtex4.layout
2572     scrartcl.layout
2573     scrbook.layout
2574     scrlettr.layout
2575     scrlttr2.layout
2576     scrreprt.layout
2577     seminar.layout
2578     siamltex.layout
2579     simplecv.layout
2580     slides.layout
2581     spie.layout
2582     svglobal.layout
2583     svjog.layout
2584     svprobth.layout
2585     tarticle.layout
2586     tbook.layout
2587     treport.layout
2588 ''')
2589
2590
2591 lib_layouts_inc_files = Split('''
2592     aapaper.inc
2593     agu_stdclass.inc
2594     agu_stdcounters.inc
2595     agu_stdlists.inc
2596     agu_stdsections.inc
2597     agu_stdtitle.inc
2598     aguplus.inc
2599     amsdefs.inc
2600     db_lyxmacros.inc
2601     db_stdcharstyles.inc
2602     db_stdclass.inc
2603     db_stdcounters.inc
2604     db_stdlayouts.inc
2605     db_stdlists.inc
2606     db_stdsections.inc
2607     db_stdstarsections.inc
2608     db_stdstruct.inc
2609     db_stdtitle.inc
2610     literate-scrap.inc
2611     lyxmacros.inc
2612     numarticle.inc
2613     numreport.inc
2614     numrevtex.inc
2615     scrclass.inc
2616     stdcharstyles.inc
2617     stdclass.inc
2618     stdcounters.inc
2619     stdcustom.inc
2620     stdfloats.inc
2621     stdinsets.inc
2622     stdlayouts.inc
2623     stdletter.inc
2624     stdlists.inc
2625     stdsections.inc
2626     stdstarsections.inc
2627     stdstruct.inc
2628     stdtitle.inc
2629     svjour.inc
2630     theorems.inc
2631     theorems-ams.inc
2632     theorems-order.inc
2633     theorems-proof.inc
2634     theorems-starred.inc
2635     theorems-starred-equivalents.inc
2636 ''')
2637
2638
2639 lib_layouts_module_files = Split('''
2640     braille.module
2641     endnotes.module
2642     foottoend.module
2643     hanging.module
2644     linguistics.module
2645     logicalmkup.module
2646     minimalistic.module
2647     theorems-ams-extended.module
2648     theorems-ams.module
2649     theorems-chap.module
2650     theorems-sec.module
2651     theorems-starred.module
2652     theorems-std.module
2653 ''')
2654
2655 lib_scripts_files = Split('''
2656     TeXFiles.py
2657     clean_dvi.py
2658     convertDefault.py
2659     date.py
2660     ext_copy.py
2661     fen2ascii.py
2662     fig2pdftex.py
2663     fig2pstex.py
2664     fig_copy.py
2665     layout2layout.py
2666     legacy_lyxpreview2ppm.py
2667     listerrors
2668     lyxpreview2bitmap.py
2669     lyxpreview_tools.py
2670     tex_copy.py
2671 ''')
2672
2673
2674 lib_bind_files = Split('''
2675     aqua.bind
2676     broadway.bind
2677     cua.bind
2678     cyrkeys.bind
2679     emacs.bind
2680     greekkeys.bind
2681     hollywood.bind
2682     latinkeys.bind
2683     mac.bind
2684     math.bind
2685     menus.bind
2686     sciword.bind
2687     site.bind
2688     xemacs.bind
2689 ''')
2690
2691
2692 lib_bind_fi_files = Split('''
2693     menus.bind
2694 ''')
2695
2696
2697 lib_bind_sv_files = Split('''
2698     menus.bind
2699 ''')
2700
2701
2702 lib_bind_pt_files = Split('''
2703     menus.bind
2704 ''')
2705
2706
2707 lib_bind_de_files = Split('''
2708     menus.bind
2709 ''')
2710
2711
2712 lib_commands_files = Split('''
2713     default.def
2714 ''')
2715
2716
2717 boost_extra_files = Split('''
2718     LICENSE_1_0.txt
2719     Makefile.am
2720 ''')
2721
2722
2723 boost_libs_extra_files = Split('''
2724     Makefile.am
2725     README
2726 ''')
2727
2728
2729 boost_libs_signals_extra_files = Split('''
2730     Makefile.am
2731     signals.vcproj
2732 ''')
2733
2734
2735 boost_libs_signals_src_files = Split('''
2736     connection.cpp
2737     named_slot_map.cpp
2738     signal_base.cpp
2739     slot.cpp
2740     trackable.cpp
2741 ''')
2742
2743
2744 boost_libs_signals_src_extra_files = Split('''
2745     Makefile.am
2746     pch.h
2747 ''')
2748
2749
2750 boost_libs_regex_extra_files = Split('''
2751     Makefile.am
2752     regex.vcproj
2753 ''')
2754
2755
2756 boost_libs_regex_src_files = Split('''
2757     c_regex_traits.cpp
2758     cpp_regex_traits.cpp
2759     cregex.cpp
2760     fileiter.cpp
2761     instances.cpp
2762     posix_api.cpp
2763     regex.cpp
2764     regex_debug.cpp
2765     regex_raw_buffer.cpp
2766     regex_traits_defaults.cpp
2767     w32_regex_traits.cpp
2768     wide_posix_api.cpp
2769     winstances.cpp
2770 ''')
2771
2772
2773 boost_libs_regex_src_extra_files = Split('''
2774     Makefile.am
2775     pch.h
2776 ''')
2777
2778
2779 boost_libs_filesystem_extra_files = Split('''
2780     Makefile.am
2781     filesystem.vcproj
2782 ''')
2783
2784
2785 boost_libs_filesystem_src_files = Split('''
2786     exception.cpp
2787     operations.cpp
2788     path.cpp
2789     portability.cpp
2790 ''')
2791
2792
2793 boost_libs_filesystem_src_extra_files = Split('''
2794     Makefile.am
2795     pch.h
2796 ''')
2797
2798
2799 development_Win32_packaging_installer = Split('''
2800     license.rtf
2801     lyx.nsi
2802     settings.nsh
2803     settings.user.nsh
2804 ''')
2805
2806
2807 development_Win32_packaging_installer_components = Split('''
2808     configure.nsh
2809     core.nsh
2810     dicts.nsh
2811     external.nsh
2812     langselect.nsh
2813     reinstall.nsh
2814     uninstall.nsh
2815     user.nsh
2816     viewer.nsh
2817 ''')
2818
2819
2820 development_Win32_packaging_installer_dialogs = Split('''
2821     external.ini
2822     langselect.ini
2823     reinstall.ini
2824     user.ini
2825     viewer.ini
2826 ''')
2827
2828
2829 development_Win32_packaging_installer_graphics = Split('''
2830     header.bmp
2831     wizard.bmp
2832 ''')
2833
2834
2835 development_Win32_packaging_installer_include = Split('''
2836     declarations.nsh
2837     detection.nsh
2838     filelists.nsh
2839     gui.nsh
2840     init.nsh
2841     lang.nsh
2842     windows.nsh
2843 ''')
2844
2845
2846 development_Win32_packaging_installer_lang = Split('''
2847     english.nsh
2848     french.nsh
2849     german.nsh
2850     italian.nsh
2851 ''')
2852