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