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