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