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