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