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