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