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