]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
scons_manifest.py: fix SCons after removal of Ispell and Pspell
[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     GuiNote.h
733     GuiPainter.h
734     GuiParagraph.h
735     GuiPrefs.h
736     GuiPrint.h
737     GuiRef.h
738     GuiSearch.h
739     GuiSelection.h
740     GuiSelectionManager.h
741     GuiSendto.h
742     GuiSetBorder.h
743     GuiShowFile.h
744     GuiSpellchecker.h
745     GuiSymbols.h
746     GuiTabularCreate.h
747     GuiTabular.h
748     GuiTexinfo.h
749     GuiThesaurus.h
750     GuiToc.h
751     GuiToolbar.h
752     GuiView.h
753     GuiViewSource.h
754     GuiVSpace.h
755     GuiWorkArea.h
756     GuiWrap.h
757     IconPalette.h
758     InsertTableWidget.h
759     LaTeXHighlighter.h
760     LengthCombo.h
761     LyXFileDialog.h
762     Menus.h
763     PanelStack.h
764     TocModel.h
765     TocWidget.h
766     Toolbars.h
767     Validator.h
768     qt_helpers.h
769     qt_i18n.h
770 ''')
771
772
773 src_frontends_qt4_files = Split('''
774     ButtonPolicy.cpp
775     Dialog.cpp
776     Action.cpp
777     BulletsModule.cpp
778     ButtonController.cpp
779     ColorCache.cpp
780     CustomizedWidgets.cpp
781     EmptyTable.cpp
782     FindAndReplace.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     FindAndReplaceUI.ui
891     FloatPlacementUi.ui
892     FloatUi.ui
893     FontUi.ui
894     GraphicsUi.ui
895     HSpaceUi.ui
896     HyperlinkUi.ui
897     IncludeUi.ui
898     InfoUi.ui
899     LabelUi.ui
900     LaTeXUi.ui
901     LanguageUi.ui
902     ListingsUi.ui
903     LogUi.ui
904     MarginsUi.ui
905     MathMatrixUi.ui
906     MathsUi.ui
907     ModulesUi.ui
908     NomenclUi.ui
909     NoteUi.ui
910     NumberingUi.ui
911     PageLayoutUi.ui
912     ParagraphUi.ui
913     PDFSupportUi.ui
914     PreambleUi.ui
915     PrefColorsUi.ui
916     PrefCompletionUi.ui
917     PrefConvertersUi.ui
918     PrefDateUi.ui
919     PrefDisplayUi.ui
920     PrefEditUi.ui
921     PrefFileformatsUi.ui
922     PrefIdentityUi.ui
923     PrefInputUi.ui
924     PrefLanguageUi.ui
925     PrefLatexUi.ui
926     PrefPathsUi.ui
927     PrefPlaintextUi.ui
928     PrefPrinterUi.ui
929     PrefScreenFontsUi.ui
930     PrefShortcutsUi.ui
931     PrefSpellcheckerUi.ui
932     PrefUi.ui
933     PrefsUi.ui
934     PrintUi.ui
935     RefUi.ui
936     SearchUi.ui
937     SendtoUi.ui
938     ShortcutUi.ui
939     ShowFileUi.ui
940     SpellcheckerUi.ui
941     SymbolsUi.ui
942     TabularCreateUi.ui
943     TabularUi.ui
944     TexinfoUi.ui
945     TextLayoutUi.ui
946     ThesaurusUi.ui
947     TocUi.ui
948     VSpaceUi.ui
949     ViewSourceUi.ui
950     WrapUi.ui
951 ''')
952
953
954 src_frontends_qt4_ui_extra_files = Split('''
955     Makefile.am
956     compile_uic.sh
957 ''')
958
959
960 src_insets_header_files = Split('''
961     ExternalSupport.h
962     ExternalTemplate.h
963     ExternalTransforms.h
964     Inset.h
965     InsetBibitem.h
966     InsetBibtex.h
967     InsetBox.h
968     InsetBranch.h
969     InsetCaption.h
970     InsetCitation.h
971     InsetCode.h
972     InsetCollapsable.h
973     InsetCommand.h
974     InsetCommandParams.h
975     InsetERT.h
976     InsetExternal.h
977     InsetFlex.h
978     InsetFloat.h
979     InsetFloatList.h
980     InsetFoot.h
981     InsetFootlike.h
982     InsetGraphics.h
983     InsetGraphicsParams.h
984     InsetHyperlink.h
985     InsetInclude.h
986     InsetIndex.h
987     InsetInfo.h
988     InsetLabel.h
989     InsetLayout.h
990     InsetLine.h
991     InsetListings.h
992     InsetListingsParams.h
993     InsetMarginal.h
994     InsetNewline.h
995     InsetNewpage.h
996     InsetNomencl.h
997     InsetNote.h
998     InsetOptArg.h
999     InsetQuotes.h
1000     InsetRef.h
1001     InsetSpace.h
1002     InsetSpecialChar.h
1003     InsetTOC.h
1004     InsetTabular.h
1005     InsetText.h
1006     InsetVSpace.h
1007     InsetWrap.h
1008     RenderBase.h
1009     RenderButton.h
1010     RenderGraphic.h
1011     RenderPreview.h
1012 ''')
1013
1014
1015 src_insets_files = Split('''
1016     ExternalSupport.cpp
1017     ExternalTemplate.cpp
1018     ExternalTransforms.cpp
1019     Inset.cpp
1020     InsetBibitem.cpp
1021     InsetBibtex.cpp
1022     InsetBox.cpp
1023     InsetBranch.cpp
1024     InsetCaption.cpp
1025     InsetCitation.cpp
1026     InsetCollapsable.cpp
1027     InsetCommand.cpp
1028     InsetCommandParams.cpp
1029     InsetERT.cpp
1030     InsetExternal.cpp
1031     InsetFlex.cpp
1032     InsetFloat.cpp
1033     InsetFloatList.cpp
1034     InsetFoot.cpp
1035     InsetFootlike.cpp
1036     InsetGraphics.cpp
1037     InsetGraphicsParams.cpp
1038     InsetHyperlink.cpp
1039     InsetInclude.cpp
1040     InsetIndex.cpp
1041     InsetInfo.cpp
1042     InsetLabel.cpp
1043     InsetLayout.cpp
1044     InsetLine.cpp
1045     InsetListings.cpp
1046     InsetListingsParams.cpp
1047     InsetMarginal.cpp
1048     InsetNewline.cpp
1049     InsetNewpage.cpp
1050     InsetNomencl.cpp
1051     InsetNote.cpp
1052     InsetOptArg.cpp
1053     InsetQuotes.cpp
1054     InsetRef.cpp
1055     InsetSpace.cpp
1056     InsetSpecialChar.cpp
1057     InsetTOC.cpp
1058     InsetTabular.cpp
1059     InsetText.cpp
1060     InsetVSpace.cpp
1061     InsetWrap.cpp
1062     RenderButton.cpp
1063     RenderGraphic.cpp
1064     RenderPreview.cpp
1065 ''')
1066
1067
1068 src_insets_extra_files = Split('''
1069     Makefile.am
1070     pch.h
1071 ''')
1072
1073
1074 intl_header_files = Split('''
1075     eval-plural.h
1076     gettextP.h
1077     gmo.h
1078     hash-string.h
1079     loadinfo.h
1080     localcharset.h
1081     os2compat.h
1082     plural-exp.h
1083     printf-args.h
1084     printf-parse.h
1085     relocatable.h
1086     vasnprintf.h
1087     vasnwprintf.h
1088     wprintf-parse.h
1089     xsize.h
1090 ''')
1091
1092
1093 intl_files = Split('''
1094     bindtextdom.c
1095     dcgettext.c
1096     dcigettext.c
1097     dcngettext.c
1098     dgettext.c
1099     dngettext.c
1100     explodename.c
1101     finddomain.c
1102     gettext.c
1103     intl-compat.c
1104     l10nflist.c
1105     langprefs.c
1106     loadmsgcat.c
1107     localcharset.c
1108     localealias.c
1109     localename.c
1110     log.c
1111     ngettext.c
1112     osdep.c
1113     plural-exp.c
1114     plural.c
1115     printf.c
1116     relocatable.c
1117     textdomain.c
1118 ''')
1119
1120
1121 intl_extra_files = Split('''
1122     VERSION
1123     config.charset
1124     libgnuintl.h.in
1125     locale.alias
1126     os2compat.c
1127     plural.y
1128     printf-args.c
1129     printf-parse.c
1130     ref-add.sin
1131     ref-del.sin
1132     vasnprintf.c
1133 ''')
1134
1135
1136 config_extra_files = Split('''
1137     Makefile.am
1138     common.am
1139     config.guess
1140     config.rpath
1141     config.sub
1142     depcomp
1143     install-sh
1144     libtool.m4
1145     ltmain.sh
1146     lyxinclude.m4
1147     missing
1148     mkinstalldirs
1149     pkg.m4
1150     py-compile
1151     qt4.m4
1152     spell.m4
1153 ''')
1154
1155
1156 sourcedoc_extra_files = Split('''
1157     Doxyfile.in
1158     Makefile.am
1159 ''')
1160
1161
1162 po_extra_files = Split('''
1163     LINGUAS
1164     Makefile.in.in
1165     Makevars
1166     POTFILES.in
1167     README
1168     Rules-quot
1169     ar.po
1170     bg.po
1171     boldquot.sed
1172     ca.po
1173     cs.po
1174     da.po
1175     de.po
1176     en@boldquot.header
1177     en@quot.header
1178     en.po
1179     es.po
1180     eu.po
1181     fi.po
1182     fr.po
1183     gl.po
1184     he.po
1185     hu.po
1186     insert-header.sin
1187     it.po
1188     ja.po
1189     ko.po
1190     lyx_pot.py
1191     nb.po
1192     nl.po
1193     nn.po
1194     pl.po
1195     pocheck.pl
1196     postats.sh
1197     pt.po
1198     quot.sed
1199     remove-potcdate.sin
1200     ro.po
1201     ru.po
1202     sk.po
1203     sl.po
1204     sv.po
1205     tr.po
1206     uk.po
1207     wa.po
1208     zh_CN.po
1209     zh_TW.po
1210 ''')
1211
1212
1213 lib_files = Split('''
1214     CREDITS
1215     chkconfig.ltx
1216     configure.py
1217     encodings
1218     external_templates
1219     languages
1220     symbols
1221     syntax.default
1222     unicodesymbols
1223 ''')
1224
1225
1226 lib_extra_files = Split('''
1227     Makefile.am
1228     autocorrect
1229     build-listerrors
1230     generate_contributions.py
1231 ''')
1232
1233
1234 lib_kbd_files = Split('''
1235     american-2.kmap
1236     american.kmap
1237     arabic.kmap
1238     bg-bds-1251.kmap
1239     brazil.kmap
1240     brazil2.kmap
1241     czech-prg.kmap
1242     czech.kmap
1243     espanol.kmap
1244     european.kmap
1245     farsi.kmap
1246     francais.kmap
1247     french.kmap
1248     german-2.kmap
1249     german-3.kmap
1250     german.kmap
1251     greek.kmap
1252     hebrew.kmap
1253     koi8-r.kmap
1254     koi8-u.kmap
1255     latvian.kmap
1256     magyar-2.kmap
1257     magyar-3.kmap
1258     magyar.kmap
1259     null.kmap
1260     polish.kmap
1261     polski.kmap
1262     portuges.kmap
1263     romanian.kmap
1264     serbian.kmap
1265     serbocroatian.kmap
1266     sf.kmap
1267     sg.kmap
1268     slovak.kmap
1269     slovene.kmap
1270     thai-kedmanee.kmap
1271     transilvanian.kmap
1272     turkish-f.kmap
1273     turkish.kmap
1274 ''')
1275
1276
1277 lib_templates_files = Split('''
1278     aa.lyx
1279     aastex.lyx
1280     ACM-siggraph.lyx
1281     ACM-sigplan.lyx
1282     agu_article.lyx
1283     apa.lyx
1284     beamer-conference-ornate-20min.lyx
1285     de_beamer-conference-ornate-20min.lyx
1286     dinbrief.lyx
1287     docbook_article.lyx
1288     elsarticle.lyx
1289     fr_beamer-conference-ornate-20min.lyx
1290     g-brief-de.lyx
1291     g-brief-en.lyx
1292     g-brief2.lyx
1293     hollywood.lyx
1294     IEEEtran.lyx
1295     ijmpc.lyx
1296     ijmpd.lyx
1297     iop-article.lyx
1298     JSS-article.lyx
1299     kluwer.lyx
1300     koma-letter2.lyx
1301     latex8.lyx
1302     letter.lyx
1303     README.new_templates
1304     revtex.lyx
1305     revtex4.lyx
1306     slides.lyx
1307 ''')
1308
1309
1310 lib_ui_files = Split('''
1311     classic.ui
1312     default.ui
1313     stdcontext.inc
1314     stdmenus.inc
1315     stdtoolbars.inc
1316 ''')
1317
1318
1319 lib_fonts_files = Split('''
1320     BaKoMaFontLicense.txt
1321     ReadmeBaKoMa4LyX.txt
1322     cmex10.ttf
1323     cmmi10.ttf
1324     cmr10.ttf
1325     cmsy10.ttf
1326     esint10.ttf
1327     eufm10.ttf
1328     msam10.ttf
1329     msbm10.ttf
1330     wasy10.ttf
1331 ''')
1332
1333
1334 lib_images_files = Split('''
1335     all-changes-accept.png
1336     all-changes-reject.png
1337     amssymb.png
1338     banner.png
1339     bookmark-goto.png
1340     bookmark-save.png
1341     box-insert.png
1342     break-line.png
1343     buffer-close.png
1344     buffer-export_dvi.png
1345     buffer-export_latex.png
1346     buffer-export_pdf2.png
1347     buffer-export_ps.png
1348     buffer-export_text.png
1349     buffer-new.png
1350     buffer-reload.png
1351     buffer-update_dvi.png
1352     buffer-update_pdf2.png
1353     buffer-update_ps.png
1354     buffer-view_dvi.png
1355     buffer-view_pdf2.png
1356     buffer-view_ps.png
1357     buffer-write-as.png
1358     buffer-write.png
1359     build-program.png
1360     change-accept.png
1361     change-next.png
1362     change-reject.png
1363     changes-merge.png
1364     changes-output.png
1365     changes-track.png
1366     closetab.png
1367     close-tab-group.png
1368     copy.png
1369     cut.png
1370     demote.png
1371     depth-decrement.png
1372     depth-increment.png
1373     dialog-preferences.png
1374     dialog-show-new-inset_citation.png
1375     dialog-show-new-inset_graphics.png
1376     dialog-show-new-inset_include.png
1377     dialog-show-new-inset_ref.png
1378     dialog-show_character.png
1379     dialog-show_findreplace.png
1380     dialog-show_mathdelimiter.png
1381     dialog-show_mathmatrix.png
1382     dialog-show_print.png
1383     dialog-show_spellchecker.png
1384     dialog-toggle_toc.png
1385     down.png
1386     ert-insert.png
1387     file-open.png
1388     float-insert_figure.png
1389     float-insert_table.png
1390     font-bold.png
1391     font-emph.png
1392     textstyle-apply.png
1393     font-noun.png
1394     font-sans.png
1395     footnote-insert.png
1396     href-insert.png
1397     hidetab.png
1398     index-insert.png
1399     label-insert.png
1400     layout-document.png
1401     layout-paragraph.png
1402     layout.png
1403     layout_Description.png
1404     layout_Enumerate.png
1405     layout_Itemize.png
1406     layout_List.png
1407     layout_LyX-Code.png
1408     layout_Scrap.png
1409     layout_Section.png
1410     lyx-quit.png
1411     lyx.png
1412     vc-check-in.png
1413     vc-check-out.png
1414     dialog-show_vclog.png
1415     vc-register.png
1416     vc-revert.png
1417     marginalnote-insert.png
1418     math-display.png
1419     math-macro-add-greedy-optional-param.png
1420     math-macro-add-optional-param.png
1421     math-macro-add-param.png
1422     math-macro-append-greedy-param.png
1423     math-macro-make-nonoptional.png
1424     math-macro-make-optional.png
1425     math-macro-remove-greedy-param.png
1426     math-macro-remove-optional-param.png
1427     math-macro-remove-param.png
1428     math-macro_newmacroname_newcommand.png
1429     math-matrix.png
1430     math-mode.png
1431     math-subscript.png
1432     math-superscript.png
1433     nomencl-insert.png
1434     note-insert.png
1435     note-next.png
1436     paste.png
1437     promote.png
1438     psnfss1.png
1439     psnfss2.png
1440     psnfss3.png
1441     psnfss4.png
1442     redo.png
1443     reload.png
1444     split-view_horizontal.png
1445     split-view_vertical.png
1446     standard.png
1447     tabular-feature_align-center.png
1448     tabular-feature_align-left.png
1449     tabular-feature_align-right.png
1450     tabular-feature_append-column.png
1451     tabular-feature_append-row.png
1452     tabular-feature_delete-column.png
1453     tabular-feature_delete-row.png
1454     tabular-feature_multicolumn.png
1455     tabular-feature_set-all-lines.png
1456     tabular-feature_set-border-lines.png
1457     tabular-feature_set-longtabular.png
1458     tabular-feature_set-rotate-cell.png
1459     tabular-feature_set-rotate-tabular.png
1460     tabular-feature_toggle-line-bottom.png
1461     tabular-feature_toggle-line-left.png
1462     tabular-feature_toggle-line-right.png
1463     tabular-feature_toggle-line-top.png
1464     tabular-feature_toggle-rotate-cell.png
1465     tabular-feature_toggle-rotate-tabular.png
1466     tabular-feature_unset-all-lines.png
1467     tabular-feature_valign-bottom.png
1468     tabular-feature_valign-middle.png
1469     tabular-feature_valign-top.png
1470     tabular-insert.png
1471     thesaurus-entry.png
1472     toolbar-toggle_math.png
1473     toolbar-toggle_math_panels.png
1474     toolbar-toggle_table.png
1475     undo.png
1476     unknown.png
1477     up.png
1478     url-insert.png
1479 ''')
1480
1481
1482 lib_images_extra_files = Split('''
1483     README
1484     font-smallcaps.png
1485 ''')
1486
1487
1488 lib_images_math_files = Split('''
1489     Bbbk.png
1490     Finv.png
1491     Game.png
1492     Im.png
1493     Lleftarrow.png
1494     Lsh.png
1495     Re.png
1496     Rrightarrow.png
1497     Rsh.png
1498     Vvdash.png
1499     acute.png
1500     aleph.png
1501     alpha.png
1502     amalg.png
1503     angle.png
1504     approx.png
1505     approxeq.png
1506     asymp.png
1507     backepsilon.png
1508     backprime.png
1509     backsim.png
1510     backsimeq.png
1511     backslash.png
1512     bar.png
1513     bars.png
1514     barwedge.png
1515     because.png
1516     beta.png
1517     beth.png
1518     between.png
1519     bigcap.png
1520     bigcirc.png
1521     bigcup.png
1522     bigodot.png
1523     bigoplus.png
1524     bigotimes.png
1525     bigsqcup.png
1526     bigstar.png
1527     bigtriangledown.png
1528     bigtriangleup.png
1529     biguplus.png
1530     bigvee.png
1531     bigwedge.png
1532     blacklozenge.png
1533     blacksquare.png
1534     blacktriangle.png
1535     blacktriangledown.png
1536     blacktriangleleft.png
1537     blacktriangleright.png
1538     bot.png
1539     bowtie.png
1540     boxdot.png
1541     boxminus.png
1542     boxplus.png
1543     boxtimes.png
1544     breve.png
1545     bullet.png
1546     bumpeq.png
1547     bumpeq2.png
1548     cap.png
1549     cap2.png
1550     cases.png
1551     cdot.png
1552     cdots.png
1553     centerdot.png
1554     check.png
1555     chi.png
1556     circ.png
1557     circeq.png
1558     circlearrowleft.png
1559     circlearrowright.png
1560     circledS.png
1561     circledast.png
1562     circledcirc.png
1563     circleddash.png
1564     clubsuit.png
1565     complement.png
1566     cong.png
1567     coprod.png
1568     cup.png
1569     cup2.png
1570     curlyeqprec.png
1571     curlyeqsucc.png
1572     curlyvee.png
1573     curlywedge.png
1574     curvearrowleft.png
1575     curvearrowright.png
1576     dagger.png
1577     daleth.png
1578     dashleftarrow.png
1579     dashrightarrow.png
1580     dashv.png
1581     ddagger.png
1582     ddot.png
1583     ddots.png
1584     delim.png
1585     delta.png
1586     delta2.png
1587     diagdown.png
1588     diagup.png
1589     diamond.png
1590     diamondsuit.png
1591     digamma.png
1592     div.png
1593     divideontimes.png
1594     dot.png
1595     doteq.png
1596     doteqdot.png
1597     dotplus.png
1598     dotsint.png
1599     dotsintop.png
1600     doublebarwedge.png
1601     downarrow.png
1602     downarrow2.png
1603     downdownarrows.png
1604     downharpoonleft.png
1605     downharpoonright.png
1606     ell.png
1607     empty.png
1608     emptyset.png
1609     epsilon.png
1610     eqcirc.png
1611     eqslantgtr.png
1612     eqslantless.png
1613     equation.png
1614     equiv.png
1615     eta.png
1616     eth.png
1617     exists.png
1618     fallingdotseq.png
1619     flat.png
1620     font.png
1621     forall.png
1622     frac-square.png
1623     frac.png
1624     frown.png
1625     functions.png
1626     gamma.png
1627     gamma2.png
1628     geq.png
1629     geqq.png
1630     geqslant.png
1631     gg.png
1632     ggg.png
1633     gimel.png
1634     gnapprox.png
1635     gneq.png
1636     gneqq.png
1637     gnsim.png
1638     grave.png
1639     gtrapprox.png
1640     gtrdot.png
1641     gtreqless.png
1642     gtreqqless.png
1643     gtrless.png
1644     gtrsim.png
1645     gvertneqq.png
1646     hat.png
1647     hbar.png
1648     heartsuit.png
1649     hookleftarrow.png
1650     hookrightarrow.png
1651     hphantom.png
1652     hslash.png
1653     iiiint.png
1654     iiiintop.png
1655     iiint.png
1656     iiintop.png
1657     iint.png
1658     iintop.png
1659     imath.png
1660     in.png
1661     infty.png
1662     int.png
1663     intercal.png
1664     intop.png
1665     iota.png
1666     jmath.png
1667     kappa.png
1668     lambda.png
1669     lambda2.png
1670     langle.png
1671     lbrace.png
1672     lbrace_rbrace.png
1673     lbracket.png
1674     lbracket_rbracket.png
1675     lceil.png
1676     lceil_rceil.png
1677     ldots.png
1678     leftarrow.png
1679     leftarrow2.png
1680     leftarrowtail.png
1681     leftharpoondown.png
1682     leftharpoonup.png
1683     leftleftarrows.png
1684     leftrightarrow.png
1685     leftrightarrow2.png
1686     leftrightarrows.png
1687     leftrightharpoons.png
1688     leftrightsquigarrow.png
1689     leftthreetimes.png
1690     leq.png
1691     leqq.png
1692     leqslant.png
1693     lessapprox.png
1694     lessdot.png
1695     lesseqgtr.png
1696     lesseqqgtr.png
1697     lessgtr.png
1698     lesssim.png
1699     lfloor.png
1700     lfloor_rfloor.png
1701     ll.png
1702     llcorner.png
1703     lll.png
1704     lnapprox.png
1705     lneq.png
1706     lneqq.png
1707     lnsim.png
1708     longleftarrow.png
1709     longleftarrow2.png
1710     longleftrightarrow.png
1711     longleftrightarrow2.png
1712     longmapsto.png
1713     longrightarrow.png
1714     longrightarrow2.png
1715     looparrowleft.png
1716     looparrowright.png
1717     lozenge.png
1718     lparen.png
1719     lparen_rparen.png
1720     lrcorner.png
1721     ltimes.png
1722     lvertneqq.png
1723     mapsto.png
1724     mathbb_C.png
1725     mathbb_H.png
1726     mathbb_N.png
1727     mathbb_Q.png
1728     mathbb_R.png
1729     mathbb_Z.png
1730     mathcal_F.png
1731     mathcal_H.png
1732     mathcal_L.png
1733     mathcal_O.png
1734     mathcircumflex.png
1735     mathrm_T.png
1736     matrix.png
1737     measuredangle.png
1738     mho.png
1739     mid.png
1740     models.png
1741     mp.png
1742     mu.png
1743     multimap.png
1744     nabla.png
1745     natural.png
1746     ncong.png
1747     nearrow.png
1748     neg.png
1749     neq.png
1750     nexists.png
1751     ngeq.png
1752     ngeqq.png
1753     ngeqslant.png
1754     ngtr.png
1755     ni.png
1756     nleftarrow.png
1757     nleftarrow2.png
1758     nleftrightarrow.png
1759     nleftrightarrow2.png
1760     nleq.png
1761     nleqq.png
1762     nleqslant.png
1763     nless.png
1764     nmid.png
1765     notin.png
1766     nparallel.png
1767     nprec.png
1768     npreceq.png
1769     nrightarrow.png
1770     nrightarrow2.png
1771     nshortmid.png
1772     nshortparallel.png
1773     nsim.png
1774     nsubseteq.png
1775     nsucc.png
1776     nsucceq.png
1777     nsupseteq.png
1778     nsupseteqq.png
1779     ntriangleleft.png
1780     ntrianglelefteq.png
1781     ntriangleright.png
1782     ntrianglerighteq.png
1783     nu.png
1784     nvdash.png
1785     nvdash2.png
1786     nvdash3.png
1787     nwarrow.png
1788     odot.png
1789     oiint.png
1790     oiintop.png
1791     oint.png
1792     ointclockwise.png
1793     ointclockwiseop.png
1794     ointctrclockwise.png
1795     ointctrclockwiseop.png
1796     ointop.png
1797     omega.png
1798     omega2.png
1799     ominus.png
1800     oplus.png
1801     oslash.png
1802     otimes.png
1803     overbrace.png
1804     overleftarrow.png
1805     overleftrightarrow.png
1806     overline.png
1807     overrightarrow.png
1808     overset.png
1809     parallel.png
1810     partial.png
1811     perp.png
1812     phantom.png
1813     phi.png
1814     phi2.png
1815     pi.png
1816     pi2.png
1817     pitchfork.png
1818     pm.png
1819     prec.png
1820     precapprox.png
1821     preccurlyeq.png
1822     preceq.png
1823     precnapprox.png
1824     precnsim.png
1825     precsim.png
1826     prime.png
1827     prod.png
1828     propto.png
1829     psi.png
1830     psi2.png
1831     rangle.png
1832     rbrace.png
1833     rbracket.png
1834     rceil.png
1835     rfloor.png
1836     rho.png
1837     rightarrow.png
1838     rightarrow2.png
1839     rightarrowtail.png
1840     rightharpoondown.png
1841     rightharpoonup.png
1842     rightleftarrows.png
1843     rightleftharpoons.png
1844     rightrightarrows.png
1845     rightsquigarrow.png
1846     rightthreetimes.png
1847     risingdotseq.png
1848     root.png
1849     rparen.png
1850     rtimes.png
1851     searrow.png
1852     setminus.png
1853     sharp.png
1854     shortmid.png
1855     shortparallel.png
1856     sigma.png
1857     sigma2.png
1858     sim.png
1859     simeq.png
1860     slash.png
1861     smallfrown.png
1862     smallsetminus.png
1863     smallsmile.png
1864     smile.png
1865     space.png
1866     spadesuit.png
1867     sphericalangle.png
1868     sqcap.png
1869     sqcup.png
1870     sqiint.png
1871     sqiintop.png
1872     sqint.png
1873     sqintop.png
1874     sqrt-square.png
1875     sqrt.png
1876     sqsubset.png
1877     sqsubseteq.png
1878     sqsupset.png
1879     sqsupseteq.png
1880     square.png
1881     star.png
1882     style.png
1883     style.png
1884     sub.png
1885     subset.png
1886     subset2.png
1887     subseteq.png
1888     subseteqq.png
1889     subsetneq.png
1890     subsetneqq.png
1891     succ.png
1892     succapprox.png
1893     succcurlyeq.png
1894     succeq.png
1895     succnapprox.png
1896     succnsim.png
1897     succsim.png
1898     sum.png
1899     super.png
1900     supset.png
1901     supset2.png
1902     supseteq.png
1903     supseteqq.png
1904     supsetneq.png
1905     supsetneqq.png
1906     surd.png
1907     swarrow.png
1908     tau.png
1909     textrm_AA.png
1910     textrm_O.png
1911     therefore.png
1912     theta.png
1913     theta2.png
1914     thickapprox.png
1915     thicksim.png
1916     tilde.png
1917     times.png
1918     top.png
1919     triangle.png
1920     triangledown.png
1921     triangleleft.png
1922     trianglelefteq.png
1923     triangleq.png
1924     triangleright.png
1925     trianglerighteq.png
1926     twoheadleftarrow.png
1927     twoheadrightarrow.png
1928     ulcorner.png
1929     underbrace.png
1930     underleftarrow.png
1931     underleftrightarrow.png
1932     underline.png
1933     underrightarrow.png
1934     underscore.png
1935     underset.png
1936     uparrow.png
1937     uparrow2.png
1938     updownarrow.png
1939     updownarrow2.png
1940     upharpoonleft.png
1941     upharpoonright.png
1942     uplus.png
1943     upsilon.png
1944     upsilon2.png
1945     upuparrows.png
1946     urcorner.png
1947     varepsilon.png
1948     varkappa.png
1949     varnothing.png
1950     varphi.png
1951     varpi.png
1952     varpropto.png
1953     varrho.png
1954     varsigma.png
1955     varsubsetneq.png
1956     varsubsetneqq.png
1957     varsupsetneq.png
1958     varsupsetneqq.png
1959     vartheta.png
1960     vartriangle.png
1961     vartriangleleft.png
1962     vartriangleright.png
1963     vdash.png
1964     vdash2.png
1965     vdash3.png
1966     vdots.png
1967     vec.png
1968     vee.png
1969     veebar.png
1970     vert.png
1971     vert2.png
1972     vphantom.png
1973     wedge.png
1974     widehat.png
1975     widetilde.png
1976     wp.png
1977     wr.png
1978     xi.png
1979     xi2.png
1980     zeta.png
1981 ''')
1982
1983
1984 lib_images_math_extra_files = Split('''
1985     ams_arrows.png
1986     ams_misc.png
1987     ams_nrel.png
1988     ams_ops.png
1989     ams_rel.png
1990     arrows.png
1991     bop.png
1992     brel.png
1993     deco.png
1994     deco.png
1995     delim.png
1996     delim0.png
1997     delim1.png
1998     dots.png
1999     font.png
2000     functions.png
2001     greek.png
2002     misc.png
2003     varsz.png
2004 ''')
2005
2006
2007 lib_images_commands_files = Split('''
2008 ''')
2009
2010
2011 lib_images_attic_extra_files = Split('''
2012     dialog-show_mathpanel.png
2013 ''')
2014
2015
2016 lib_tex_files = Split('''
2017     broadway.cls
2018     hollywood.cls
2019     lyxchess.sty
2020     lyxskak.sty
2021     revtex.cls
2022 ''')
2023
2024
2025 lib_doc_files = Split('''
2026     Customization.lyx
2027     DocStyle.lyx
2028     DummyDocument1.lyx
2029     DummyDocument2.lyx
2030     DummyTextDocument.txt
2031     EmbeddedObjects.lyx
2032     Extended.lyx
2033     Formula-numbering.lyx
2034     Intro.lyx
2035     LaTeXConfig.lyx
2036     LFUNs.lyx
2037     Math.lyx
2038     Shortcuts.lyx
2039     Tutorial.lyx
2040     UserGuide.lyx
2041 ''')
2042
2043
2044 lib_doc_biblio_files = Split('''
2045     alphadin.bst
2046     LyXDocs.bib
2047 ''')
2048
2049
2050 lib_doc_clipart_files = Split('''
2051     Abstract.pdf
2052     BoxInsetDefaultQt4.png
2053     ChangesToolbar.png
2054     ChildDocumentQt4.png
2055     CommentNoteImageQt4.png
2056     ERT.png
2057     ExternalMaterialQt4.png
2058     ExtraToolbar.png
2059     GreyedOutNoteImageQt4.png
2060     LaTeX.png
2061     LyXNoteImageQt4.png
2062     SpaceMarker.png
2063     StandardToolbar.png
2064     ToolbarEnvBox.png
2065     endnotes.pdf
2066     escher-lsd.eps
2067     floatQt4.png
2068     footnoteQt4.png
2069     labelQt4.png
2070     macrobox.png
2071     macrouse.png
2072     mbox.png
2073     mobius.eps
2074     platypus.eps
2075     referenceQt4.png
2076     ViewToolbar.png
2077     with_fntright.pdf
2078     without_fntright.pdf
2079 ''')
2080
2081
2082 lib_doc_extra_files = Split('''
2083     Makefile.am
2084     README.Documentation
2085 ''')
2086
2087
2088 lib_doc_ca_files = Split('''
2089     Intro.lyx
2090 ''')
2091
2092
2093 lib_doc_cs_files = Split('''
2094     Tutorial.lyx
2095 ''')
2096
2097
2098 lib_doc_de_files = Split('''
2099     Customization.lyx
2100     DummyDocument1.lyx
2101     DummyDocument2.lyx
2102     DummyTextDocument.txt
2103     EmbeddedObjects.lyx
2104     Extended.lyx
2105     Formelnummerierung.lyx
2106     Intro.lyx
2107     Math.lyx
2108     Shortcuts.lyx
2109     Tutorial.lyx
2110     UserGuide.lyx
2111 ''')
2112
2113
2114 lib_doc_de_clipart_files = Split('''
2115     ERT.png
2116     ExternesMaterialQt4.png
2117     FussnoteQt4.png
2118     GleitobjektQt4.png
2119     GrauschriftNotizQt4.png
2120     KommentarQt4.png
2121     LyXNotizQt4.png
2122     Marke.png
2123     Querverweis.png
2124     StandardBoxQt4.png
2125     UnterdokumentQt4.png
2126 ''')
2127
2128
2129 lib_doc_da_files = Split('''
2130     Intro.lyx
2131 ''')
2132
2133
2134 lib_doc_es_files = Split('''
2135     DocumentoPostizo1.lyx
2136     DocumentoPostizo2.lyx
2137     DocumentoTextoPostizo.txt
2138     EmbeddedObjects.lyx
2139     Extended.lyx
2140     Formula-numbering.lyx
2141     Intro.lyx
2142     Math.lyx
2143     Shortcuts.lyx
2144     Tutorial.lyx
2145     UserGuide.lyx
2146 ''')
2147
2148
2149 lib_doc_es_clipart_files = Split('''
2150     ComentNotaImagenQt4.png
2151     CuadroMinipagQt4.png
2152     DocumentoHijoQt4.png
2153     GrisNotaImagenQt4.png
2154     MaterialExternoQt4.png
2155     NotaLyXImagenQt4.png
2156     Resumen.pdf
2157     es_ERT.png
2158     es_ToolbarEnvBox.png
2159     etiquetaQt4.png
2160     flotanteQt4.png
2161     notapieQt4.png
2162     referenciaQt4.png
2163 ''')
2164
2165
2166 lib_doc_eu_files = Split('''
2167     Customization.lyx
2168     Extended.lyx
2169     Intro.lyx
2170     Tutorial.lyx
2171     UserGuide.lyx
2172 ''')
2173
2174
2175 lib_doc_fr_files = Split('''
2176     Customization.lyx
2177     DocumentBidon1.lyx
2178     DocumentBidon2.lyx
2179     DocumentTexteBidon.txt
2180     EmbeddedObjects.lyx
2181     Extended.lyx
2182     Formula-numbering.lyx
2183     Intro.lyx
2184     Math.lyx
2185     Tutorial.lyx
2186     UserGuide.lyx
2187 ''')
2188
2189
2190 lib_doc_fr_clipart_files = Split('''
2191     BoxInsetDefaultQt4.png
2192     ChildDocumentQt4.png
2193     CommentNoteImageQt4.png
2194     GreyedOutNoteImageQt4.png
2195     LyXNoteImageQt4.png
2196     floatQt4.png
2197     footnoteQt4.png
2198     labelQt4.png
2199 ''')
2200
2201
2202 lib_doc_gl_files = Split('''
2203     Intro.lyx
2204     Tutorial.lyx
2205 ''')
2206
2207
2208 lib_doc_he_files = Split('''
2209     Intro.lyx
2210     Tutorial.lyx
2211 ''')
2212
2213
2214 lib_doc_hu_files = Split('''
2215     Intro.lyx
2216     Tutorial.lyx
2217 ''')
2218
2219
2220 lib_doc_it_files = Split('''
2221     Customization.lyx
2222     Intro.lyx
2223     Tutorial.lyx
2224     UserGuide.lyx
2225 ''')
2226
2227
2228 lib_doc_it_clipart_files = Split('''
2229     it_footnoteQt4.png
2230     it_referenceQt4.png
2231 ''')
2232
2233
2234 lib_doc_ja_files = Split('''
2235     Extended.lyx
2236     Intro.lyx
2237     LaTeXConfig.lyx
2238     Shortcuts.lyx
2239     Tutorial.lyx
2240     UserGuide.lyx
2241 ''')
2242
2243
2244 lib_doc_ja_clipart_files = Split('''
2245     floatQt4.png
2246     footnoteQt4.png
2247     referenceQt4.png
2248     ERT.png
2249     ToolbarEnvBox.png
2250 ''')
2251
2252
2253 lib_doc_nb_files = Split('''
2254     Intro.lyx
2255 ''')
2256
2257
2258 lib_doc_nl_files = Split('''
2259     Intro.lyx
2260     Tutorial.lyx
2261 ''')
2262
2263
2264 lib_doc_pl_files = Split('''
2265     Extended.lyx
2266     Intro.lyx
2267     Tutorial.lyx
2268 ''')
2269
2270
2271 lib_doc_pt_files = Split('''
2272     Intro.lyx
2273     Tutorial.lyx
2274 ''')
2275
2276
2277 lib_doc_ro_files = Split('''
2278     Intro.lyx
2279 ''')
2280
2281
2282 lib_doc_ru_files = Split('''
2283     Intro.lyx
2284     Tutorial.lyx
2285 ''')
2286
2287
2288 lib_doc_sl_files = Split('''
2289     Intro.lyx
2290     Tutorial.lyx
2291 ''')
2292
2293
2294 lib_doc_sk_files = Split('''
2295     Tutorial.lyx
2296     UserGuide.lyx
2297 ''')
2298
2299
2300 lib_doc_sv_files = Split('''
2301     Intro.lyx
2302     Tutorial.lyx
2303 ''')
2304
2305
2306 lib_doc_uk_files = Split('''
2307     Intro.lyx
2308 ''')
2309
2310
2311 lib_doc_uk_clipart_files = Split('''
2312     FootnoteQT4.png
2313 ''')
2314
2315
2316 lib_examples_files = Split('''
2317     aa_sample.lyx
2318     aas_sample.lyx
2319     achemso.lyx
2320     addressExample.adr
2321     amsart-test.lyx
2322     amsbook-test.lyx
2323     armenian-article.lyx
2324     beamer-g4-mask.jpg
2325     beamer-g4.jpg
2326     beamer-icsi-logo.pdf
2327     beamer-knight1-mask.png
2328     beamer-knight1.png
2329     beamer-knight2-mask.png
2330     beamer-knight2.png
2331     beamer-knight3-mask.png
2332     beamer-knight3.png
2333     beamer-knight4-mask.png
2334     beamer-knight4.png
2335     beamerlyxexample1.lyx
2336     biblioExample.bib
2337     Braille.lyx
2338     chess-article.lyx
2339     chessgame.lyx
2340     CV-image.eps
2341     CV-image.png
2342     docbook_article.lyx
2343     europeCV.lyx
2344     example_lyxified.lyx
2345     example_raw.lyx
2346     Foils.lyx
2347     iecc05.fen
2348     iecc07.fen
2349     iecc12.fen
2350     ItemizeBullets.lyx
2351     landslide.lyx
2352     linguistics.lyx
2353     listerrors.lyx
2354     Literate.lyx
2355     modernCV.lyx
2356     multicol.lyx
2357     noweb2lyx.lyx
2358     powerdot-example.lyx
2359     recipebook.lyx
2360     script_form.lyx
2361     seminar.lyx
2362     serial_letter1.lyx
2363     serial_letter2.lyx
2364     serial_letter3.lyx
2365     simplecv.lyx
2366     splash.lyx
2367     xyfigure.png
2368     xypic.lyx
2369 ''')
2370
2371
2372 lib_examples_ca_files = Split('''
2373     ItemizeBullets.lyx
2374     mathed.lyx
2375     splash.lyx
2376 ''')
2377
2378
2379 lib_examples_cs_files = Split('''
2380     splash.lyx
2381 ''')
2382
2383
2384 lib_examples_da_files = Split('''
2385     splash.lyx
2386 ''')
2387
2388
2389 lib_examples_de_files = Split('''
2390     Dezimal.lyx
2391     ItemizeBullets.lyx
2392     Lebenslauf.lyx
2393     beispiel_gelyxt.lyx
2394     beispiel_roh.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 ''')