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