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