]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
remove the no longer used GuiNote
[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     InsetIterator.h
75     InsetList.h
76     Intl.h
77     KeyMap.h
78     KeySequence.h
79     LaTeX.h
80     LaTeXFeatures.h
81     Language.h
82     Layout.h
83     LayoutEnums.h
84     LayoutFile.h
85     Length.h
86     Lexer.h
87     LyX.h
88     LyXAction.h
89     LyXFunc.h
90     LyXRC.h
91     LyXVC.h
92     MetricsInfo.h
93     ModuleList.h
94     Mover.h
95     OutputParams.h
96     ParIterator.h
97     Paragraph.h
98     ParagraphList.h
99     ParagraphMetrics.h
100     ParagraphParameters.h
101     PDFOptions.h
102     PrinterParams.h
103     Row.h
104     Section.h
105     Server.h
106     ServerSocket.h
107     Session.h
108     Spacing.h
109     SpellBase.h
110     TexRow.h
111     Text.h
112     TextClass.h
113     TextMetrics.h
114     Thesaurus.h
115     TocBackend.h
116     Trans.h
117     Undo.h
118     VCBackend.h
119     VSpace.h
120     Variables.h
121     WordLangTuple.h
122     buffer_funcs.h
123     factory.h
124     lyxfind.h
125     output.h
126     output_docbook.h
127     output_latex.h
128     output_plaintext.h
129     paper.h
130     paragraph_funcs.h
131     rowpainter.h
132     sgml.h
133     update_flags.h
134     version.h
135     WordList.h
136 ''')
137
138
139 src_pre_files = Split('''
140     Author.cpp
141     Bidi.cpp
142     BranchList.cpp
143     Buffer.cpp
144     BufferList.cpp
145     BufferParams.cpp
146     BufferView.cpp
147     Bullet.cpp
148     Changes.cpp
149     Chktex.cpp
150     CmdDef.cpp
151     Color.cpp
152     Converter.cpp
153     ConverterCache.cpp
154     CoordCache.cpp
155     Counters.cpp
156     Cursor.cpp
157     CursorSlice.cpp
158     CutAndPaste.cpp
159     DepTable.cpp
160     DocIterator.cpp
161     Encoding.cpp
162     ErrorList.cpp
163     Exporter.cpp
164     FloatList.cpp
165     Floating.cpp
166     Font.cpp
167     FontInfo.cpp
168     FontList.cpp
169     Format.cpp
170     FuncRequest.cpp
171     FuncStatus.cpp
172     Graph.cpp
173     InsetIterator.cpp
174     InsetList.cpp
175     Intl.cpp
176     KeyMap.cpp
177     KeySequence.cpp
178     LaTeX.cpp
179     LaTeXFeatures.cpp
180     Language.cpp
181     Layout.cpp
182     LayoutFile.cpp
183     Length.cpp
184     Lexer.cpp
185     LyX.cpp
186     LyXAction.cpp
187     LyXFunc.cpp
188     LyXRC.cpp
189     LyXVC.cpp
190     MetricsInfo.cpp
191     Mover.cpp
192     OutputParams.cpp
193     PDFOptions.cpp
194     ParIterator.cpp
195     Paragraph.cpp
196     ParagraphMetrics.cpp
197     ParagraphParameters.cpp
198     Row.cpp
199     Server.cpp
200     ServerSocket.cpp
201     Session.cpp
202     Spacing.cpp
203     TexRow.cpp
204     Text.cpp
205     Text2.cpp
206     Text3.cpp
207     TextClass.cpp
208     TextMetrics.cpp
209     TocBackend.cpp
210     Trans.cpp
211     Undo.cpp
212     VCBackend.cpp
213     VSpace.cpp
214     buffer_funcs.cpp
215     factory.cpp
216     lengthcommon.cpp
217     lyxfind.cpp
218     output.cpp
219     output_docbook.cpp
220     output_latex.cpp
221     output_plaintext.cpp
222     paragraph_funcs.cpp
223     rowpainter.cpp
224     sgml.cpp
225     version.cpp
226     WordList.cpp
227 ''')
228
229
230 src_post_files = Split('''
231     BiblioInfo.cpp
232     Box.cpp
233     Dimension.cpp
234     ModuleList.cpp
235     PrinterParams.cpp
236     SpellBase.cpp
237     Thesaurus.cpp
238     boost.cpp
239 ''')
240
241
242 src_extra_src_files = Split('''
243     ASpell.cpp
244     Section.cpp
245     Variables.cpp
246     main.cpp
247 ''')
248
249
250 src_extra_files = Split('''
251     Makefile.am
252     pch.h
253 ''')
254
255
256 src_client_header_files = Split('''
257     Messages.h
258 ''')
259
260
261 src_client_files = Split('''
262     Messages.cpp
263     boost.cpp
264     client.cpp
265     gettext.cpp
266 ''')
267
268
269 src_client_extra_files = Split('''
270     Makefile.am
271     lyxclient.man
272     pch.h
273 ''')
274
275
276 src_support_header_files = Split('''
277     ExceptionMessage.h
278     FileMonitor.h
279     FileName.h
280     ForkedCalls.h
281     Messages.h
282     Package.h
283     Path.h
284     RandomAccessList.h
285     SignalSlot.h
286     SignalSlotPrivate.h
287     Systemcall.h
288     Timeout.h
289     Translator.h
290     convert.h
291     copied_ptr.h
292     debug.h
293     docstream.h
294     docstring.h
295     docstring_list.h
296     environment.h
297     filetools.h
298     foreach.h
299     gettext.h
300     gzstream.h
301     lassert.h
302     limited_stack.h
303     lstrings.h
304     lyxalgo.h
305     lyxlib.h
306     lyxtime.h
307     os.h
308     os_win32.h
309     qstring_helpers.h
310     socktools.h
311     textutils.h
312     types.h
313     unicode.h
314     userinfo.h
315 ''')
316
317
318 src_support_files = Split('''
319     FileMonitor.cpp
320     FileName.cpp
321     ForkedCalls.cpp
322     Messages.cpp
323     Package.cpp
324     Path.cpp
325     SignalSlot.cpp
326     SignalSlotPrivate.cpp
327     Systemcall.cpp
328     Timeout.cpp
329     convert.cpp
330     debug.cpp
331     docstream.cpp
332     docstring.cpp
333     environment.cpp
334     filetools.cpp
335     gettext.cpp
336     gzstream.cpp
337     kill.cpp
338     lassert.cpp
339     lstrings.cpp
340     lyxtime.cpp
341     os.cpp
342     qstring_helpers.cpp
343     socktools.cpp
344     unicode.cpp
345     userinfo.cpp
346 ''')
347
348
349 src_support_extra_header_files = Split('''
350     
351 ''')
352
353
354 src_support_extra_src_files = Split('''
355     atexit.c
356     os_cygwin.cpp
357     os_unix.cpp
358     os_win32.cpp
359     strerror.c
360 ''')
361
362
363 src_support_extra_files = Split('''
364     Makefile.am
365     pch.h
366 ''')
367
368
369 src_support_tests_extra_files = Split('''
370     Makefile.am
371     boost.cpp
372     convert.cpp
373     filetools.cpp
374     lstrings.cpp
375     pch.h
376     test_convert
377     test_filetools
378     test_lstrings
379 ''')
380
381
382 src_support_tests_regfiles_extra_files = Split('''
383     convert
384     filetools
385     lstrings
386 ''')
387
388
389 src_graphics_header_files = Split('''
390     GraphicsCache.h
391     GraphicsCacheItem.h
392     GraphicsConverter.h
393     GraphicsImage.h
394     GraphicsLoader.h
395     GraphicsParams.h
396     GraphicsTypes.h
397     PreviewImage.h
398     PreviewLoader.h
399     Previews.h
400 ''')
401
402
403 src_graphics_files = Split('''
404     GraphicsCache.cpp
405     GraphicsCacheItem.cpp
406     GraphicsConverter.cpp
407     GraphicsLoader.cpp
408     GraphicsParams.cpp
409     PreviewImage.cpp
410     PreviewLoader.cpp
411     Previews.cpp
412 ''')
413
414
415 src_graphics_extra_files = Split('''
416     Makefile.am
417     pch.h
418 ''')
419
420
421 src_mathed_header_files = Split('''
422     CommandInset.h
423     InsetMath.h
424     InsetMathAMSArray.h
425     InsetMathArray.h
426     InsetMathBig.h
427     InsetMathBoldSymbol.h
428     InsetMathBox.h
429     InsetMathBrace.h
430     InsetMathCases.h
431     InsetMathChar.h
432     InsetMathColor.h
433     InsetMathComment.h
434     InsetMathDecoration.h
435     InsetMathDelim.h
436     InsetMathDiff.h
437     InsetMathDots.h
438     InsetMathEnsureMath.h
439     InsetMathEnv.h
440     InsetMathExFunc.h
441     InsetMathExInt.h
442     InsetMathFont.h
443     InsetMathFontOld.h
444     InsetMathFrac.h
445     InsetMathGrid.h
446     InsetMathHull.h
447     InsetMathKern.h
448     InsetMathLefteqn.h
449     InsetMathLim.h
450     InsetMathMatrix.h
451     InsetMathNest.h
452     InsetMathNumber.h
453     InsetMathOverset.h
454     InsetMathPar.h
455     InsetMathPhantom.h
456     InsetMathRef.h
457     InsetMathRoot.h
458     InsetMathScript.h
459     InsetMathSize.h
460     InsetMathSpace.h
461     InsetMathSpecialChar.h
462     InsetMathSplit.h
463     InsetMathSqrt.h
464     InsetMathStackrel.h
465     InsetMathString.h
466     InsetMathSubstack.h
467     InsetMathSymbol.h
468     InsetMathTabular.h
469     InsetMathUnderset.h
470     InsetMathUnknown.h
471     InsetMathXArrow.h
472     InsetMathXYMatrix.h
473     MacroTable.h
474     MathAtom.h
475     MathAutoCorrect.h
476     MathCompletionList.h
477     MathData.h
478     MathExtern.h
479     MathFactory.h
480     MathGridInfo.h
481     MathMacro.h
482     MathMacroArgument.h
483     MathMacroTemplate.h
484     MathParser.h
485     MathParser_flags.h
486     MathStream.h
487     MathSupport.h
488     ReplaceData.h
489     TextPainter.h
490 ''')
491
492
493 src_mathed_files = Split('''
494     CommandInset.cpp
495     InsetMath.cpp
496     InsetMathAMSArray.cpp
497     InsetMathArray.cpp
498     InsetMathBig.cpp
499     InsetMathBoldSymbol.cpp
500     InsetMathBox.cpp
501     InsetMathBrace.cpp
502     InsetMathCases.cpp
503     InsetMathChar.cpp
504     InsetMathColor.cpp
505     InsetMathComment.cpp
506     InsetMathDecoration.cpp
507     InsetMathDelim.cpp
508     InsetMathDiff.cpp
509     InsetMathDots.cpp
510     InsetMathEnsureMath.cpp
511     InsetMathEnv.cpp
512     InsetMathExFunc.cpp
513     InsetMathExInt.cpp
514     InsetMathFont.cpp
515     InsetMathFontOld.cpp
516     InsetMathFrac.cpp
517     InsetMathGrid.cpp
518     InsetMathHull.cpp
519     InsetMathKern.cpp
520     InsetMathLefteqn.cpp
521     InsetMathLim.cpp
522     InsetMathMatrix.cpp
523     InsetMathNest.cpp
524     InsetMathNumber.cpp
525     InsetMathOverset.cpp
526     InsetMathPar.cpp
527     InsetMathPhantom.cpp
528     InsetMathRef.cpp
529     InsetMathRoot.cpp
530     InsetMathScript.cpp
531     InsetMathSize.cpp
532     InsetMathSpace.cpp
533     InsetMathSpecialChar.cpp
534     InsetMathSplit.cpp
535     InsetMathSqrt.cpp
536     InsetMathStackrel.cpp
537     InsetMathString.cpp
538     InsetMathSubstack.cpp
539     InsetMathSymbol.cpp
540     InsetMathTabular.cpp
541     InsetMathUnderset.cpp
542     InsetMathUnknown.cpp
543     InsetMathXArrow.cpp
544     InsetMathXYMatrix.cpp
545     MacroTable.cpp
546     MathAtom.cpp
547     MathAutoCorrect.cpp
548     MathData.cpp
549     MathExtern.cpp
550     MathFactory.cpp
551     MathMacro.cpp
552     MathMacroArgument.cpp
553     MathMacroTemplate.cpp
554     MathParser.cpp
555     MathStream.cpp
556     MathSupport.cpp
557     TextPainter.cpp
558 ''')
559
560
561 src_mathed_extra_files = Split('''
562     BUGS
563     InsetFormulaMacro.cpp
564     InsetFormulaMacro.h
565     InsetMathMBox.cpp
566     InsetMathMBox.h
567     InsetMathXYArrow.cpp
568     InsetMathXYArrow.h
569     Makefile.am
570     README
571     pch.h
572     texify
573 ''')
574
575
576 src_tex2lyx_header_files = Split('''
577     Context.h
578     Font.h
579     Parser.h
580     Spacing.h
581     tex2lyx.h
582 ''')
583
584
585 src_tex2lyx_files = Split('''
586     Context.cpp
587     Font.cpp
588     Parser.cpp
589     boost.cpp
590     gettext.cpp
591     math.cpp
592     preamble.cpp
593     table.cpp
594     tex2lyx.cpp
595     text.cpp
596 ''')
597
598
599 src_tex2lyx_copied_header_files = Split('''
600     insets/InsetLayout.h
601 ''')
602
603
604 src_tex2lyx_copied_files = Split('''
605     Color.cpp
606     Counters.cpp
607     Encoding.cpp
608     FloatList.cpp
609     Floating.cpp
610     Layout.cpp
611     Lexer.cpp
612     TextClass.cpp
613     insets/InsetLayout.cpp
614     lengthcommon.cpp
615 ''')
616
617
618 src_tex2lyx_extra_files = Split('''
619     Makefile.am
620     pch.h
621     tex2lyx.1
622     test/box-color-size-space-align.tex
623     test/DummyDocument.tex
624     test/foo.eps
625     test/foo.png
626     test/test-insets.tex
627     test/test.ltx
628     test/test-structure.tex
629 ''')
630
631
632 src_frontends_header_files = Split('''
633     Application.h
634     Clipboard.h
635     FontLoader.h
636     FontMetrics.h
637     KeyModifier.h
638     KeySymbol.h
639     LyXView.h
640     Painter.h
641     Selection.h
642     WorkArea.h
643     WorkAreaManager.h
644     alert.h
645     mouse_state.h
646 ''')
647
648
649 src_frontends_files = Split('''
650     WorkAreaManager.cpp
651 ''')
652
653
654 src_frontends_extra_files = Split('''
655     Makefile.am
656     pch.h
657 ''')
658
659
660 src_frontends_controllers_extra_files = Split('''
661     Makefile.am
662     pch.h
663 ''')
664
665
666 src_frontends_controllers_tests_extra_files = Split('''
667     Makefile.am
668     biblio.cpp
669     boost.cpp
670     pch.h
671     test_biblio
672 ''')
673
674
675 src_frontends_controllers_tests_regfiles_extra_files = Split('''
676     biblio
677 ''')
678
679
680 src_frontends_qt4_header_files = Split('''
681     ButtonPolicy.h
682     Dialog.h
683     Action.h
684     BulletsModule.h
685     ButtonController.h
686     ColorCache.h
687     CustomizedWidgets.h
688     DialogView.h
689     DockView.h
690     EmptyTable.h
691     FileDialog.h
692     FindAndReplace.h
693     FloatPlacement.h
694     GuiAbout.h
695     GuiApplication.h
696     GuiBibitem.h
697     GuiBibtex.h
698     GuiBox.h
699     GuiBranches.h
700     GuiBranch.h
701     GuiChanges.h
702     GuiCharacter.h
703     GuiCharacter.h
704     GuiCitation.h
705     GuiClipboard.h
706     GuiCommandBuffer.h
707     GuiCommandEdit.h
708     GuiCompleter.h
709     GuiDelimiter.h
710     GuiDialog.h
711     GuiDocument.h
712     GuiErrorList.h
713     GuiERT.h
714     GuiExternal.h
715     GuiFloat.h
716     GuiFontExample.h
717     GuiFontLoader.h
718     GuiGraphics.h
719     GuiGraphicsUi.h
720     GuiHSpace.h
721     GuiHyperlink.h
722     GuiIdListModel.h
723     GuiImage.h
724     GuiInclude.h
725     GuiInfo.h
726     GuiKeySymbol.h
727     GuiLabel.h
728     GuiListings.h
729     GuiLog.h
730     GuiMathMatrix.h
731     GuiNomencl.h
732     GuiPainter.h
733     GuiParagraph.h
734     GuiPrefs.h
735     GuiPrint.h
736     GuiRef.h
737     GuiSearch.h
738     GuiSelection.h
739     GuiSelectionManager.h
740     GuiSendto.h
741     GuiSetBorder.h
742     GuiShowFile.h
743     GuiSpellchecker.h
744     GuiSymbols.h
745     GuiTabularCreate.h
746     GuiTabular.h
747     GuiTexinfo.h
748     GuiThesaurus.h
749     GuiToc.h
750     GuiToolbar.h
751     GuiView.h
752     GuiViewSource.h
753     GuiVSpace.h
754     GuiWorkArea.h
755     GuiWrap.h
756     IconPalette.h
757     InsertTableWidget.h
758     LaTeXHighlighter.h
759     LengthCombo.h
760     LyXFileDialog.h
761     Menus.h
762     PanelStack.h
763     TocModel.h
764     TocWidget.h
765     Toolbars.h
766     Validator.h
767     qt_helpers.h
768     qt_i18n.h
769 ''')
770
771
772 src_frontends_qt4_files = Split('''
773     ButtonPolicy.cpp
774     Dialog.cpp
775     Action.cpp
776     BulletsModule.cpp
777     ButtonController.cpp
778     ColorCache.cpp
779     CustomizedWidgets.cpp
780     EmptyTable.cpp
781     FindAndReplace.cpp
782     FileDialog.cpp
783     FloatPlacement.cpp
784     GuiAbout.cpp
785     GuiAlert.cpp
786     GuiApplication.cpp
787     GuiBibitem.cpp
788     GuiBibtex.cpp
789     GuiBox.cpp
790     GuiBranch.cpp
791     GuiBranches.cpp
792     GuiChanges.cpp
793     GuiCharacter.cpp
794     GuiCitation.cpp
795     GuiClipboard.cpp
796     GuiCommandBuffer.cpp
797     GuiCommandEdit.cpp
798     GuiCompleter.cpp
799     GuiDelimiter.cpp
800     GuiDialog.cpp
801     GuiDocument.cpp
802     GuiErrorList.cpp
803     GuiERT.cpp
804     GuiExternal.cpp
805     GuiFloat.cpp
806     GuiFontExample.cpp
807     GuiFontLoader.cpp
808     GuiFontMetrics.cpp
809     GuiGraphics.cpp
810     GuiHSpace.cpp
811     GuiHyperlink.cpp
812     GuiIdListModel.cpp 
813     GuiImage.cpp
814     GuiInclude.cpp
815     GuiInfo.cpp
816     GuiKeySymbol.cpp
817     GuiLabel.cpp
818     GuiListings.cpp
819     GuiLog.cpp
820     GuiMathMatrix.cpp
821     GuiNomencl.cpp
822     GuiPainter.cpp
823     GuiParagraph.cpp
824     GuiPrefs.cpp
825     GuiPrint.cpp
826     GuiRef.cpp
827     GuiSearch.cpp
828     GuiSelection.cpp
829     GuiSelectionManager.cpp
830     GuiSendto.cpp
831     GuiSetBorder.cpp
832     GuiShowFile.cpp
833     GuiSpellchecker.cpp
834     GuiSymbols.cpp
835     GuiTabular.cpp
836     GuiTabularCreate.cpp
837     GuiTexinfo.cpp
838     GuiThesaurus.cpp
839     GuiToc.cpp
840     GuiToolbar.cpp
841     GuiView.cpp
842     GuiViewSource.cpp
843     GuiVSpace.cpp
844     GuiWorkArea.cpp
845     GuiWrap.cpp
846     IconPalette.cpp
847     InsertTableWidget.cpp
848     LengthCombo.cpp
849     LaTeXHighlighter.cpp
850     LyXFileDialog.cpp
851     Menus.cpp
852     PanelStack.cpp
853     TocModel.cpp
854     TocWidget.cpp
855     Toolbars.cpp
856     Validator.cpp
857     qt_helpers.cpp
858 ''')
859
860
861 src_frontends_qt4_extra_files = Split('''
862     GuiFontMetrics.h
863     Makefile.am
864     README
865     pch.h
866 ''')
867
868
869 src_frontends_qt4_ui_files = Split('''
870     AboutUi.ui
871     AskForTextUi.ui
872     BibitemUi.ui
873     BiblioUi.ui
874     BibtexAddUi.ui
875     BibtexUi.ui
876     BoxUi.ui
877     BranchUi.ui
878     BranchesUi.ui
879     BulletsUi.ui
880     ChangesUi.ui
881     CharacterUi.ui
882     CitationUi.ui
883     DelimiterUi.ui
884     DocumentUi.ui
885     ERTUi.ui
886     ErrorListUi.ui
887     ExternalUi.ui
888     FindAndReplaceUi.ui
889     FloatPlacementUi.ui
890     FloatUi.ui
891     FontUi.ui
892     GraphicsUi.ui
893     HSpaceUi.ui
894     HyperlinkUi.ui
895     IncludeUi.ui
896     InfoUi.ui
897     LabelUi.ui
898     LaTeXUi.ui
899     LanguageUi.ui
900     ListingsUi.ui
901     LogUi.ui
902     MarginsUi.ui
903     MathMatrixUi.ui
904     MathsUi.ui
905     ModulesUi.ui
906     NomenclUi.ui
907     NumberingUi.ui
908     PageLayoutUi.ui
909     ParagraphUi.ui
910     PDFSupportUi.ui
911     PreambleUi.ui
912     PrefColorsUi.ui
913     PrefCompletionUi.ui
914     PrefConvertersUi.ui
915     PrefDateUi.ui
916     PrefDisplayUi.ui
917     PrefEditUi.ui
918     PrefFileformatsUi.ui
919     PrefIdentityUi.ui
920     PrefInputUi.ui
921     PrefLanguageUi.ui
922     PrefLatexUi.ui
923     PrefPathsUi.ui
924     PrefPlaintextUi.ui
925     PrefPrinterUi.ui
926     PrefScreenFontsUi.ui
927     PrefShortcutsUi.ui
928     PrefSpellcheckerUi.ui
929     PrefUi.ui
930     PrefsUi.ui
931     PrintUi.ui
932     RefUi.ui
933     SearchUi.ui
934     SendtoUi.ui
935     ShortcutUi.ui
936     ShowFileUi.ui
937     SpellcheckerUi.ui
938     SymbolsUi.ui
939     TabularCreateUi.ui
940     TabularUi.ui
941     TexinfoUi.ui
942     TextLayoutUi.ui
943     ThesaurusUi.ui
944     TocUi.ui
945     VSpaceUi.ui
946     ViewSourceUi.ui
947     WrapUi.ui
948 ''')
949
950
951 src_frontends_qt4_ui_extra_files = Split('''
952     Makefile.am
953     compile_uic.sh
954 ''')
955
956
957 src_insets_header_files = Split('''
958     ExternalSupport.h
959     ExternalTemplate.h
960     ExternalTransforms.h
961     Inset.h
962     InsetBibitem.h
963     InsetBibtex.h
964     InsetBox.h
965     InsetBranch.h
966     InsetCaption.h
967     InsetCitation.h
968     InsetCode.h
969     InsetCollapsable.h
970     InsetCommand.h
971     InsetCommandParams.h
972     InsetERT.h
973     InsetExternal.h
974     InsetFlex.h
975     InsetFloat.h
976     InsetFloatList.h
977     InsetFoot.h
978     InsetFootlike.h
979     InsetGraphics.h
980     InsetGraphicsParams.h
981     InsetHyperlink.h
982     InsetInclude.h
983     InsetIndex.h
984     InsetInfo.h
985     InsetLabel.h
986     InsetLayout.h
987     InsetLine.h
988     InsetListings.h
989     InsetListingsParams.h
990     InsetMarginal.h
991     InsetNewline.h
992     InsetNewpage.h
993     InsetNomencl.h
994     InsetNote.h
995     InsetOptArg.h
996     InsetQuotes.h
997     InsetRef.h
998     InsetSpace.h
999     InsetSpecialChar.h
1000     InsetTOC.h
1001     InsetTabular.h
1002     InsetText.h
1003     InsetVSpace.h
1004     InsetWrap.h
1005     RenderBase.h
1006     RenderButton.h
1007     RenderGraphic.h
1008     RenderPreview.h
1009 ''')
1010
1011
1012 src_insets_files = Split('''
1013     ExternalSupport.cpp
1014     ExternalTemplate.cpp
1015     ExternalTransforms.cpp
1016     Inset.cpp
1017     InsetBibitem.cpp
1018     InsetBibtex.cpp
1019     InsetBox.cpp
1020     InsetBranch.cpp
1021     InsetCaption.cpp
1022     InsetCitation.cpp
1023     InsetCollapsable.cpp
1024     InsetCommand.cpp
1025     InsetCommandParams.cpp
1026     InsetERT.cpp
1027     InsetExternal.cpp
1028     InsetFlex.cpp
1029     InsetFloat.cpp
1030     InsetFloatList.cpp
1031     InsetFoot.cpp
1032     InsetFootlike.cpp
1033     InsetGraphics.cpp
1034     InsetGraphicsParams.cpp
1035     InsetHyperlink.cpp
1036     InsetInclude.cpp
1037     InsetIndex.cpp
1038     InsetInfo.cpp
1039     InsetLabel.cpp
1040     InsetLayout.cpp
1041     InsetLine.cpp
1042     InsetListings.cpp
1043     InsetListingsParams.cpp
1044     InsetMarginal.cpp
1045     InsetNewline.cpp
1046     InsetNewpage.cpp
1047     InsetNomencl.cpp
1048     InsetNote.cpp
1049     InsetOptArg.cpp
1050     InsetQuotes.cpp
1051     InsetRef.cpp
1052     InsetSpace.cpp
1053     InsetSpecialChar.cpp
1054     InsetTOC.cpp
1055     InsetTabular.cpp
1056     InsetText.cpp
1057     InsetVSpace.cpp
1058     InsetWrap.cpp
1059     RenderButton.cpp
1060     RenderGraphic.cpp
1061     RenderPreview.cpp
1062 ''')
1063
1064
1065 src_insets_extra_files = Split('''
1066     Makefile.am
1067     pch.h
1068 ''')
1069
1070
1071 intl_header_files = Split('''
1072     eval-plural.h
1073     gettextP.h
1074     gmo.h
1075     hash-string.h
1076     loadinfo.h
1077     localcharset.h
1078     os2compat.h
1079     plural-exp.h
1080     printf-args.h
1081     printf-parse.h
1082     relocatable.h
1083     vasnprintf.h
1084     vasnwprintf.h
1085     wprintf-parse.h
1086     xsize.h
1087 ''')
1088
1089
1090 intl_files = Split('''
1091     bindtextdom.c
1092     dcgettext.c
1093     dcigettext.c
1094     dcngettext.c
1095     dgettext.c
1096     dngettext.c
1097     explodename.c
1098     finddomain.c
1099     gettext.c
1100     intl-compat.c
1101     l10nflist.c
1102     langprefs.c
1103     loadmsgcat.c
1104     localcharset.c
1105     localealias.c
1106     localename.c
1107     log.c
1108     ngettext.c
1109     osdep.c
1110     plural-exp.c
1111     plural.c
1112     printf.c
1113     relocatable.c
1114     textdomain.c
1115 ''')
1116
1117
1118 intl_extra_files = Split('''
1119     VERSION
1120     config.charset
1121     libgnuintl.h.in
1122     locale.alias
1123     os2compat.c
1124     plural.y
1125     printf-args.c
1126     printf-parse.c
1127     ref-add.sin
1128     ref-del.sin
1129     vasnprintf.c
1130 ''')
1131
1132
1133 config_extra_files = Split('''
1134     Makefile.am
1135     common.am
1136     config.guess
1137     config.rpath
1138     config.sub
1139     depcomp
1140     install-sh
1141     libtool.m4
1142     ltmain.sh
1143     lyxinclude.m4
1144     missing
1145     mkinstalldirs
1146     pkg.m4
1147     py-compile
1148     qt4.m4
1149     spell.m4
1150 ''')
1151
1152
1153 sourcedoc_extra_files = Split('''
1154     Doxyfile.in
1155     Makefile.am
1156 ''')
1157
1158
1159 po_extra_files = Split('''
1160     LINGUAS
1161     Makefile.in.in
1162     Makevars
1163     POTFILES.in
1164     README
1165     Rules-quot
1166     ar.po
1167     bg.po
1168     boldquot.sed
1169     ca.po
1170     cs.po
1171     da.po
1172     de.po
1173     en@boldquot.header
1174     en@quot.header
1175     en.po
1176     es.po
1177     eu.po
1178     fi.po
1179     fr.po
1180     gl.po
1181     he.po
1182     hu.po
1183     insert-header.sin
1184     it.po
1185     ja.po
1186     ko.po
1187     lyx_pot.py
1188     nb.po
1189     nl.po
1190     nn.po
1191     pl.po
1192     pocheck.pl
1193     postats.sh
1194     pt.po
1195     quot.sed
1196     remove-potcdate.sin
1197     ro.po
1198     ru.po
1199     sk.po
1200     sl.po
1201     sv.po
1202     tr.po
1203     uk.po
1204     wa.po
1205     zh_CN.po
1206     zh_TW.po
1207 ''')
1208
1209
1210 lib_files = Split('''
1211     CREDITS
1212     chkconfig.ltx
1213     configure.py
1214     encodings
1215     external_templates
1216     languages
1217     symbols
1218     syntax.default
1219     unicodesymbols
1220 ''')
1221
1222
1223 lib_extra_files = Split('''
1224     Makefile.am
1225     autocorrect
1226     build-listerrors
1227     generate_contributions.py
1228 ''')
1229
1230
1231 lib_kbd_files = Split('''
1232     american-2.kmap
1233     american.kmap
1234     arabic.kmap
1235     bg-bds-1251.kmap
1236     brazil.kmap
1237     brazil2.kmap
1238     czech-prg.kmap
1239     czech.kmap
1240     espanol.kmap
1241     european.kmap
1242     farsi.kmap
1243     francais.kmap
1244     french.kmap
1245     german-2.kmap
1246     german-3.kmap
1247     german.kmap
1248     greek.kmap
1249     hebrew.kmap
1250     koi8-r.kmap
1251     koi8-u.kmap
1252     latvian.kmap
1253     magyar-2.kmap
1254     magyar-3.kmap
1255     magyar.kmap
1256     null.kmap
1257     polish.kmap
1258     polski.kmap
1259     portuges.kmap
1260     romanian.kmap
1261     serbian.kmap
1262     serbocroatian.kmap
1263     sf.kmap
1264     sg.kmap
1265     slovak.kmap
1266     slovene.kmap
1267     thai-kedmanee.kmap
1268     transilvanian.kmap
1269     turkish-f.kmap
1270     turkish.kmap
1271 ''')
1272
1273
1274 lib_templates_files = Split('''
1275     aa.lyx
1276     aastex.lyx
1277     ACM-siggraph.lyx
1278     ACM-sigplan.lyx
1279     agu_article.lyx
1280     apa.lyx
1281     beamer-conference-ornate-20min.lyx
1282     de_beamer-conference-ornate-20min.lyx
1283     dinbrief.lyx
1284     docbook_article.lyx
1285     elsarticle.lyx
1286     fr_beamer-conference-ornate-20min.lyx
1287     g-brief-de.lyx
1288     g-brief-en.lyx
1289     g-brief2.lyx
1290     hollywood.lyx
1291     IEEEtran.lyx
1292     ijmpc.lyx
1293     ijmpd.lyx
1294     iop-article.lyx
1295     JSS-article.lyx
1296     kluwer.lyx
1297     koma-letter2.lyx
1298     latex8.lyx
1299     letter.lyx
1300     README.new_templates
1301     revtex.lyx
1302     revtex4.lyx
1303     slides.lyx
1304 ''')
1305
1306
1307 lib_ui_files = Split('''
1308     classic.ui
1309     default.ui
1310     stdcontext.inc
1311     stdmenus.inc
1312     stdtoolbars.inc
1313 ''')
1314
1315
1316 lib_fonts_files = Split('''
1317     BaKoMaFontLicense.txt
1318     ReadmeBaKoMa4LyX.txt
1319     cmex10.ttf
1320     cmmi10.ttf
1321     cmr10.ttf
1322     cmsy10.ttf
1323     esint10.ttf
1324     eufm10.ttf
1325     msam10.ttf
1326     msbm10.ttf
1327     wasy10.ttf
1328 ''')
1329
1330
1331 lib_images_files = Split('''
1332     all-changes-accept.png
1333     all-changes-reject.png
1334     amssymb.png
1335     banner.png
1336     bookmark-goto.png
1337     bookmark-save.png
1338     box-insert.png
1339     break-line.png
1340     buffer-close.png
1341     buffer-export_dvi.png
1342     buffer-export_latex.png
1343     buffer-export_pdf2.png
1344     buffer-export_ps.png
1345     buffer-export_text.png
1346     buffer-new.png
1347     buffer-reload.png
1348     buffer-update_dvi.png
1349     buffer-update_pdf2.png
1350     buffer-update_ps.png
1351     buffer-view_dvi.png
1352     buffer-view_pdf2.png
1353     buffer-view_ps.png
1354     buffer-write-as.png
1355     buffer-write.png
1356     build-program.png
1357     change-accept.png
1358     change-next.png
1359     change-reject.png
1360     changes-merge.png
1361     changes-output.png
1362     changes-track.png
1363     closetab.png
1364     close-tab-group.png
1365     copy.png
1366     cut.png
1367     demote.png
1368     depth-decrement.png
1369     depth-increment.png
1370     dialog-preferences.png
1371     dialog-show-new-inset_citation.png
1372     dialog-show-new-inset_graphics.png
1373     dialog-show-new-inset_include.png
1374     dialog-show-new-inset_ref.png
1375     dialog-show_character.png
1376     dialog-show_findreplace.png
1377     dialog-show_mathdelimiter.png
1378     dialog-show_mathmatrix.png
1379     dialog-show_print.png
1380     dialog-show_spellchecker.png
1381     dialog-toggle_toc.png
1382     down.png
1383     ert-insert.png
1384     file-open.png
1385     float-insert_figure.png
1386     float-insert_table.png
1387     font-bold.png
1388     font-emph.png
1389     textstyle-apply.png
1390     font-noun.png
1391     font-sans.png
1392     footnote-insert.png
1393     href-insert.png
1394     hidetab.png
1395     index-insert.png
1396     label-insert.png
1397     layout-document.png
1398     layout-paragraph.png
1399     layout.png
1400     layout_Description.png
1401     layout_Enumerate.png
1402     layout_Itemize.png
1403     layout_List.png
1404     layout_LyX-Code.png
1405     layout_Scrap.png
1406     layout_Section.png
1407     lyx-quit.png
1408     lyx.png
1409     vc-check-in.png
1410     vc-check-out.png
1411     dialog-show_vclog.png
1412     vc-register.png
1413     vc-revert.png
1414     marginalnote-insert.png
1415     math-display.png
1416     math-macro-add-greedy-optional-param.png
1417     math-macro-add-optional-param.png
1418     math-macro-add-param.png
1419     math-macro-append-greedy-param.png
1420     math-macro-make-nonoptional.png
1421     math-macro-make-optional.png
1422     math-macro-remove-greedy-param.png
1423     math-macro-remove-optional-param.png
1424     math-macro-remove-param.png
1425     math-macro_newmacroname_newcommand.png
1426     math-matrix.png
1427     math-mode.png
1428     math-subscript.png
1429     math-superscript.png
1430     nomencl-insert.png
1431     note-insert.png
1432     note-next.png
1433     paste.png
1434     promote.png
1435     psnfss1.png
1436     psnfss2.png
1437     psnfss3.png
1438     psnfss4.png
1439     redo.png
1440     reload.png
1441     split-view_horizontal.png
1442     split-view_vertical.png
1443     standard.png
1444     tabular-feature_m-align-center.png
1445     tabular-feature_m-align-left.png
1446     tabular-feature_m-align-right.png
1447     tabular-feature_append-column.png
1448     tabular-feature_append-row.png
1449     tabular-feature_delete-column.png
1450     tabular-feature_delete-row.png
1451     tabular-feature_multicolumn.png
1452     tabular-feature_set-all-lines.png
1453     tabular-feature_set-border-lines.png
1454     tabular-feature_set-longtabular.png
1455     tabular-feature_set-rotate-cell.png
1456     tabular-feature_set-rotate-tabular.png
1457     tabular-feature_toggle-line-bottom.png
1458     tabular-feature_toggle-line-left.png
1459     tabular-feature_toggle-line-right.png
1460     tabular-feature_toggle-line-top.png
1461     tabular-feature_toggle-rotate-cell.png
1462     tabular-feature_toggle-rotate-tabular.png
1463     tabular-feature_unset-all-lines.png
1464     tabular-feature_m-valign-bottom.png
1465     tabular-feature_m-valign-middle.png
1466     tabular-feature_m-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     MacroToolbar.png
2069     macrouse.png
2070     mbox.png
2071     mobius.eps
2072     platypus.eps
2073     referenceQt4.png
2074     ViewToolbar.png
2075     with_fntright.pdf
2076     without_fntright.pdf
2077 ''')
2078
2079
2080 lib_doc_extra_files = Split('''
2081     Makefile.am
2082     README.Documentation
2083 ''')
2084
2085
2086 lib_doc_ca_files = Split('''
2087     Intro.lyx
2088 ''')
2089
2090
2091 lib_doc_cs_files = Split('''
2092     Tutorial.lyx
2093 ''')
2094
2095
2096 lib_doc_de_files = Split('''
2097     Customization.lyx
2098     DummyDocument1.lyx
2099     DummyDocument2.lyx
2100     DummyTextDocument.txt
2101     EmbeddedObjects.lyx
2102     Extended.lyx
2103     Formelnummerierung.lyx
2104     Intro.lyx
2105     Math.lyx
2106     Shortcuts.lyx
2107     Tutorial.lyx
2108     UserGuide.lyx
2109 ''')
2110
2111
2112 lib_doc_de_clipart_files = Split('''
2113     ERT.png
2114     ExternesMaterialQt4.png
2115     FussnoteQt4.png
2116     GleitobjektQt4.png
2117     GrauschriftNotizQt4.png
2118     KommentarQt4.png
2119     LyXNotizQt4.png
2120     Marke.png
2121     Querverweis.png
2122     StandardBoxQt4.png
2123     UnterdokumentQt4.png
2124 ''')
2125
2126
2127 lib_doc_da_files = Split('''
2128     Intro.lyx
2129 ''')
2130
2131
2132 lib_doc_es_files = Split('''
2133     Customization.lyx
2134     DocumentoPostizo1.lyx
2135     DocumentoPostizo2.lyx
2136     DocumentoTextoPostizo.txt
2137     EmbeddedObjects.lyx
2138     Extended.lyx
2139     Formula-numbering.lyx
2140     Intro.lyx
2141     Math.lyx
2142     Shortcuts.lyx
2143     Tutorial.lyx
2144     UserGuide.lyx
2145 ''')
2146
2147
2148 lib_doc_es_clipart_files = Split('''
2149     ComentNotaImagenQt4.png
2150     CuadroMinipagQt4.png
2151     DocumentoHijoQt4.png
2152     GrisNotaImagenQt4.png
2153     MaterialExternoQt4.png
2154     NotaLyXImagenQt4.png
2155     Resumen.pdf
2156     es_ERT.png
2157     es_ToolbarEnvBox.png
2158     etiquetaQt4.png
2159     flotanteQt4.png
2160     notapieQt4.png
2161     referenciaQt4.png
2162 ''')
2163
2164
2165 lib_doc_eu_files = Split('''
2166     Customization.lyx
2167     Extended.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     Formula-numbering.lyx
2182     Intro.lyx
2183     Math.lyx
2184     Tutorial.lyx
2185     UserGuide.lyx
2186 ''')
2187
2188
2189 lib_doc_fr_clipart_files = Split('''
2190     BoxInsetDefaultQt4.png
2191     ChildDocumentQt4.png
2192     CommentNoteImageQt4.png
2193     GreyedOutNoteImageQt4.png
2194     LyXNoteImageQt4.png
2195     floatQt4.png
2196     footnoteQt4.png
2197     labelQt4.png
2198 ''')
2199
2200
2201 lib_doc_gl_files = Split('''
2202     Intro.lyx
2203     Tutorial.lyx
2204 ''')
2205
2206
2207 lib_doc_he_files = Split('''
2208     Intro.lyx
2209     Tutorial.lyx
2210 ''')
2211
2212
2213 lib_doc_hu_files = Split('''
2214     Intro.lyx
2215     Tutorial.lyx
2216 ''')
2217
2218
2219 lib_doc_it_files = Split('''
2220     Customization.lyx
2221     Intro.lyx
2222     Tutorial.lyx
2223     UserGuide.lyx
2224 ''')
2225
2226
2227 lib_doc_it_clipart_files = Split('''
2228     it_footnoteQt4.png
2229     it_referenceQt4.png
2230 ''')
2231
2232
2233 lib_doc_ja_files = Split('''
2234     Extended.lyx
2235     Intro.lyx
2236     LaTeXConfig.lyx
2237     Shortcuts.lyx
2238     Tutorial.lyx
2239     UserGuide.lyx
2240 ''')
2241
2242
2243 lib_doc_ja_clipart_files = Split('''
2244     floatQt4.png
2245     footnoteQt4.png
2246     referenceQt4.png
2247     ERT.png
2248     ToolbarEnvBox.png
2249 ''')
2250
2251
2252 lib_doc_nb_files = Split('''
2253     Intro.lyx
2254 ''')
2255
2256
2257 lib_doc_nl_files = Split('''
2258     Intro.lyx
2259     Tutorial.lyx
2260 ''')
2261
2262
2263 lib_doc_pl_files = Split('''
2264     Extended.lyx
2265     Intro.lyx
2266     Tutorial.lyx
2267 ''')
2268
2269
2270 lib_doc_pt_files = Split('''
2271     Intro.lyx
2272     Tutorial.lyx
2273 ''')
2274
2275
2276 lib_doc_ro_files = Split('''
2277     Intro.lyx
2278 ''')
2279
2280
2281 lib_doc_ru_files = Split('''
2282     Intro.lyx
2283     Tutorial.lyx
2284 ''')
2285
2286
2287 lib_doc_sl_files = Split('''
2288     Intro.lyx
2289     Tutorial.lyx
2290 ''')
2291
2292
2293 lib_doc_sk_files = Split('''
2294     Tutorial.lyx
2295     UserGuide.lyx
2296 ''')
2297
2298
2299 lib_doc_sv_files = Split('''
2300     Intro.lyx
2301     Tutorial.lyx
2302 ''')
2303
2304
2305 lib_doc_uk_files = Split('''
2306     Intro.lyx
2307 ''')
2308
2309
2310 lib_doc_uk_clipart_files = Split('''
2311     FootnoteQT4.png
2312 ''')
2313
2314
2315 lib_examples_files = Split('''
2316     aa_sample.lyx
2317     aas_sample.lyx
2318     achemso.lyx
2319     addressExample.adr
2320     amsart-test.lyx
2321     amsbook-test.lyx
2322     armenian-article.lyx
2323     beamer-g4-mask.jpg
2324     beamer-g4.jpg
2325     beamer-icsi-logo.pdf
2326     beamer-knight1-mask.png
2327     beamer-knight1.png
2328     beamer-knight2-mask.png
2329     beamer-knight2.png
2330     beamer-knight3-mask.png
2331     beamer-knight3.png
2332     beamer-knight4-mask.png
2333     beamer-knight4.png
2334     beamerlyxexample1.lyx
2335     biblioExample.bib
2336     Braille.lyx
2337     chess-article.lyx
2338     chessgame.lyx
2339     CV-image.eps
2340     CV-image.png
2341     docbook_article.lyx
2342     europeCV.lyx
2343     example_lyxified.lyx
2344     example_raw.lyx
2345     Foils.lyx
2346     iecc05.fen
2347     iecc07.fen
2348     iecc12.fen
2349     ItemizeBullets.lyx
2350     landslide.lyx
2351     linguistics.lyx
2352     listerrors.lyx
2353     Literate.lyx
2354     modernCV.lyx
2355     multicol.lyx
2356     noweb2lyx.lyx
2357     powerdot-example.lyx
2358     recipebook.lyx
2359     script_form.lyx
2360     seminar.lyx
2361     serial_letter1.lyx
2362     serial_letter2.lyx
2363     serial_letter3.lyx
2364     simplecv.lyx
2365     splash.lyx
2366     xyfigure.png
2367     xypic.lyx
2368 ''')
2369
2370
2371 lib_examples_ca_files = Split('''
2372     ItemizeBullets.lyx
2373     mathed.lyx
2374     splash.lyx
2375 ''')
2376
2377
2378 lib_examples_cs_files = Split('''
2379     splash.lyx
2380 ''')
2381
2382
2383 lib_examples_da_files = Split('''
2384     splash.lyx
2385 ''')
2386
2387
2388 lib_examples_de_files = Split('''
2389     beispiel_gelyxt.lyx
2390     beispiel_roh.lyx
2391     Braille.lyx
2392     Dezimal.lyx
2393     ItemizeBullets.lyx
2394     Lebenslauf.lyx
2395     multicol.lyx
2396     serienbrief1.lyx
2397     serienbrief2.lyx
2398     serienbrief3.lyx
2399     splash.lyx
2400 ''')
2401
2402
2403 lib_examples_fa_files = Split('''
2404     splash.lyx
2405 ''')
2406
2407
2408 lib_examples_fr_files = Split('''
2409     AlignementDecimal.lyx
2410     Foils.lyx
2411     ListesPuces.lyx
2412     exemple_brut.lyx
2413     exemple_lyxifie.lyx
2414     multicol.lyx
2415     simplecv.lyx
2416     splash.lyx
2417 ''')
2418
2419
2420 lib_examples_es_files = Split('''
2421     ejemplo_con_lyx.lyx
2422     ejemplo_sin_lyx.lyx
2423     ItemizeBullets.lyx
2424     multicol.lyx
2425     splash.lyx
2426 ''')
2427
2428
2429 lib_examples_eu_files = Split('''
2430     adibide_gordina.lyx
2431     adibide_lyx-atua.lyx
2432     splash.lyx
2433 ''')
2434
2435
2436 lib_examples_gl_files = Split('''
2437     exemplo_bruto.lyx
2438     exemplo_lyxificado.lyx
2439     splash.lyx
2440 ''')
2441
2442
2443 lib_examples_he_files = Split('''
2444     example_lyxified.lyx
2445     example_raw.lyx
2446     splash.lyx
2447 ''')
2448
2449
2450 lib_examples_hu_files = Split('''
2451     example_lyxified.lyx
2452     example_raw.lyx
2453     splash.lyx
2454 ''')
2455
2456
2457 lib_examples_it_files = Split('''
2458     ItemizeBullets.lyx
2459     splash.lyx
2460 ''')
2461
2462
2463 lib_examples_ja_files = Split('''
2464     splash.lyx
2465 ''')
2466
2467
2468 lib_examples_nl_files = Split('''
2469     multicol.lyx
2470     opsommingstekens.lyx
2471     splash.lyx
2472     voorbeeld_ruw.lyx
2473     voorbeeld_verlyxt.lyx
2474 ''')
2475
2476
2477 lib_examples_pl_files = Split('''
2478     splash.lyx
2479 ''')
2480
2481
2482 lib_examples_pt_files = Split('''
2483     splash.lyx
2484 ''')
2485
2486
2487 lib_examples_ro_files = Split('''
2488     splash.lyx
2489 ''')
2490
2491
2492 lib_examples_ru_files = Split('''
2493     splash.lyx
2494 ''')
2495
2496
2497 lib_examples_sl_files = Split('''
2498     primer_lyxan.lyx
2499     primer_surov.lyx
2500     splash.lyx
2501 ''')
2502
2503
2504 lib_lyx2lyx_files = Split('''
2505     LyX.py
2506     generate_encoding_info.py
2507     lyx2lyx
2508     lyx2lyx_lang.py
2509     lyx_0_06.py
2510     lyx_0_08.py
2511     lyx_0_10.py
2512     lyx_0_12.py
2513     lyx_1_0.py
2514     lyx_1_1.py
2515     lyx_1_1_5.py
2516     lyx_1_1_6_0.py
2517     lyx_1_1_6_3.py
2518     lyx_1_2.py
2519     lyx_1_3.py
2520     lyx_1_4.py
2521     lyx_1_5.py
2522     lyx_1_6.py
2523     lyx_2_0.py
2524     parser_tools.py
2525     profiling.py
2526     test_parser_tools.py
2527 ''')
2528
2529
2530 lib_lyx2lyx_extra_files = Split('''
2531     Makefile.am
2532     lyx2lyx_version.py.in
2533 ''')
2534
2535
2536 lib_layouts_files = Split('''
2537     aa.layout
2538     aapaper.layout
2539     aastex.layout
2540     achemso.layout
2541     acmsiggraph.layout
2542     agu-dtd.layout
2543     agums.layout
2544     amsart.layout
2545     amsbook.layout
2546     apa.layout
2547     arab-article.layout
2548     armenian-article.layout
2549     article.layout
2550     article-beamer.layout
2551     beamer.layout
2552     book.layout
2553     broadway.layout
2554     chess.layout
2555     cl2emult.layout
2556     dinbrief.layout
2557     docbook-book.layout
2558     docbook-chapter.layout
2559     docbook-section.layout
2560     docbook.layout
2561     dtk.layout
2562     egs.layout
2563     elsart.layout
2564     elsarticle.layout
2565     entcs.layout
2566     europecv.layout
2567     extarticle.layout
2568     extbook.layout
2569     extletter.layout
2570     extreport.layout
2571     foils.layout
2572     g-brief-de.layout
2573     g-brief-en.layout
2574     g-brief2.layout
2575     heb-article.layout
2576     heb-letter.layout
2577     hollywood.layout
2578     IEEEtran.layout
2579     ijmpc.layout
2580     ijmpd.layout
2581     iopart.layout
2582     isprs.layout
2583     jarticle.layout
2584     jbook.layout
2585     jgrga.layout
2586     jreport.layout
2587     jsarticle.layout
2588     jsbook.layout
2589     jss.layout
2590     kluwer.layout
2591     latex8.layout
2592     letter.layout
2593     literate-article.layout
2594     literate-book.layout
2595     literate-report.layout
2596     llncs.layout
2597     ltugboat.layout
2598     manpage.layout
2599     memoir.layout
2600     moderncv.layout
2601     mwart.layout
2602     mwbk.layout
2603     mwrep.layout
2604     paper.layout
2605     powerdot.layout
2606     recipebook.layout
2607     report.layout
2608     revtex.layout
2609     revtex4.layout
2610     scrartcl.layout
2611     scrarticle-beamer.layout
2612     scrbook.layout
2613     scrlettr.layout
2614     scrlttr2.layout
2615     scrreprt.layout
2616     seminar.layout
2617     siamltex.layout
2618     sigplanconf.layout
2619     simplecv.layout
2620     singlecol.layout
2621     slides.layout
2622     spie.layout
2623     svglobal.layout
2624     svglobal3.layout
2625     svjog.layout
2626     svprobth.layout
2627     tarticle.layout
2628     tbook.layout
2629     treport.layout
2630 ''')
2631
2632
2633 lib_layouts_inc_files = Split('''
2634     aapaper.inc
2635     agu_stdclass.inc
2636     agu_stdcounters.inc
2637     agu_stdlists.inc
2638     agu_stdsections.inc
2639     agu_stdtitle.inc
2640     aguplus.inc
2641     amsdefs.inc
2642     db_lyxmacros.inc
2643     db_stdcharstyles.inc
2644     db_stdclass.inc
2645     db_stdcounters.inc
2646     db_stdlayouts.inc
2647     db_stdlists.inc
2648     db_stdsections.inc
2649     db_stdstarsections.inc
2650     db_stdstruct.inc
2651     db_stdtitle.inc
2652     literate-scrap.inc
2653     lyxmacros.inc
2654     numarticle.inc
2655     numreport.inc
2656     numrevtex.inc
2657     scrclass.inc
2658     stdcharstyles.inc
2659     stdclass.inc
2660     stdcounters.inc
2661     stdcustom.inc
2662     stdfloats.inc
2663     stdinsets.inc
2664     stdlayouts.inc
2665     stdletter.inc
2666     stdlists.inc
2667     stdsections.inc
2668     stdstarsections.inc
2669     stdstruct.inc
2670     stdtitle.inc
2671     svjour.inc
2672     theorems.inc
2673     theorems-ams.inc
2674     theorems-order.inc
2675     theorems-proof.inc
2676     theorems-starred.inc
2677     theorems-starred-equivalents.inc
2678 ''')
2679
2680
2681 lib_layouts_module_files = Split('''
2682     braille.module
2683     endnotes.module
2684     foottoend.module
2685     hanging.module
2686     linguistics.module
2687     logicalmkup.module
2688     minimalistic.module
2689     theorems-ams-extended.module
2690     theorems-ams.module
2691     theorems-chap.module
2692     theorems-sec.module
2693     theorems-starred.module
2694     theorems-std.module
2695 ''')
2696
2697 lib_scripts_files = Split('''
2698     TeXFiles.py
2699     clean_dvi.py
2700     convertDefault.py
2701     csv2lyx.py
2702     date.py
2703     ext_copy.py
2704     fen2ascii.py
2705     fig2pdftex.py
2706     fig2pstex.py
2707     fig_copy.py
2708     layout2layout.py
2709     legacy_lyxpreview2ppm.py
2710     listerrors
2711     lyxpreview2bitmap.py
2712     lyxpreview-platex2bitmap.py
2713     lyxpreview_tools.py
2714     tex_copy.py
2715 ''')
2716
2717
2718 lib_bind_files = Split('''
2719     aqua.bind
2720     broadway.bind
2721     cua.bind
2722     cyrkeys.bind
2723     emacs.bind
2724     greekkeys.bind
2725     hollywood.bind
2726     latinkeys.bind
2727     mac.bind
2728     math.bind
2729     menus.bind
2730     sciword.bind
2731     site.bind
2732     xemacs.bind
2733 ''')
2734
2735
2736 lib_bind_fi_files = Split('''
2737     menus.bind
2738 ''')
2739
2740
2741 lib_bind_sv_files = Split('''
2742     menus.bind
2743 ''')
2744
2745
2746 lib_bind_pt_files = Split('''
2747     menus.bind
2748 ''')
2749
2750
2751 lib_bind_de_files = Split('''
2752     menus.bind
2753 ''')
2754
2755
2756 lib_commands_files = Split('''
2757     default.def
2758 ''')
2759
2760
2761 boost_extra_files = Split('''
2762     LICENSE_1_0.txt
2763     Makefile.am
2764 ''')
2765
2766
2767 boost_libs_extra_files = Split('''
2768     Makefile.am
2769     README
2770 ''')
2771
2772
2773 boost_libs_signals_extra_files = Split('''
2774     Makefile.am
2775     signals.vcproj
2776 ''')
2777
2778
2779 boost_libs_signals_src_files = Split('''
2780     connection.cpp
2781     named_slot_map.cpp
2782     signal_base.cpp
2783     slot.cpp
2784     trackable.cpp
2785 ''')
2786
2787
2788 boost_libs_signals_src_extra_files = Split('''
2789     Makefile.am
2790     pch.h
2791 ''')
2792
2793
2794 boost_libs_regex_extra_files = Split('''
2795     Makefile.am
2796     regex.vcproj
2797 ''')
2798
2799
2800 boost_libs_regex_src_files = Split('''
2801     c_regex_traits.cpp
2802     cpp_regex_traits.cpp
2803     cregex.cpp
2804     fileiter.cpp
2805     instances.cpp
2806     posix_api.cpp
2807     regex.cpp
2808     regex_debug.cpp
2809     regex_raw_buffer.cpp
2810     regex_traits_defaults.cpp
2811     w32_regex_traits.cpp
2812     wide_posix_api.cpp
2813     winstances.cpp
2814 ''')
2815
2816
2817 boost_libs_regex_src_extra_files = Split('''
2818     Makefile.am
2819     pch.h
2820 ''')
2821
2822
2823
2824 development_Win32_packaging_installer = Split('''
2825     license.rtf
2826     lyx.nsi
2827     settings.nsh
2828 ''')
2829
2830
2831 development_Win32_packaging_installer_graphics = Split('''
2832     header.bmp
2833     wizard.bmp
2834 ''')
2835
2836
2837 development_Win32_packaging_installer_gui = Split('''
2838     external.nsh
2839     langselect.nsh
2840     reinstall.nsh
2841 ''')
2842
2843
2844 development_Win32_packaging_installer_include = Split('''
2845     declarations.nsh
2846     detection.nsh
2847     dictlist.nsh    
2848     filelist.nsh
2849     gui.nsh
2850     init.nsh
2851     langlist.nsh
2852     nsis.nsh
2853     variables.nsh
2854 ''')
2855
2856
2857 development_Win32_packaging_installer_lang = Split('''
2858     english.nsh
2859     french.nsh
2860     german.nsh
2861     italian.nsh
2862 ''')
2863
2864
2865 development_Win32_packaging_installer_setup = Split('''
2866     configure.nsh
2867     install.nsh
2868     reinstall.nsh
2869 ''')