]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
scons compile fix for tex2lyx?
[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-longtabular.png
1460     tabular-feature_set-rotate-cell.png
1461     tabular-feature_toggle-rotate-cell.png
1462     tabular-feature_set-rotate-tabular.png
1463     tabular-feature_toggle-rotate-tabular.png
1464     tabular-feature_toggle-line-bottom.png
1465     tabular-feature_toggle-line-left.png
1466     tabular-feature_toggle-line-right.png
1467     tabular-feature_toggle-line-top.png
1468     tabular-feature_unset-all-lines.png
1469     tabular-feature_valign-bottom.png
1470     tabular-feature_valign-middle.png
1471     tabular-feature_valign-top.png
1472     tabular-insert.png
1473     thesaurus-entry.png
1474     toolbar-toggle_math.png
1475     toolbar-toggle_math_panels.png
1476     toolbar-toggle_table.png
1477     undo.png
1478     unknown.png
1479     up.png
1480     url-insert.png
1481 ''')
1482
1483
1484 lib_images_extra_files = Split('''
1485     README
1486     font-smallcaps.png
1487 ''')
1488
1489
1490 lib_images_math_files = Split('''
1491     Bbbk.png
1492     Finv.png
1493     Game.png
1494     Im.png
1495     Lleftarrow.png
1496     Lsh.png
1497     Re.png
1498     Rrightarrow.png
1499     Rsh.png
1500     Vvdash.png
1501     acute.png
1502     aleph.png
1503     alpha.png
1504     amalg.png
1505     angle.png
1506     approx.png
1507     approxeq.png
1508     asymp.png
1509     backepsilon.png
1510     backprime.png
1511     backsim.png
1512     backsimeq.png
1513     backslash.png
1514     bar.png
1515     bars.png
1516     barwedge.png
1517     because.png
1518     beta.png
1519     beth.png
1520     between.png
1521     bigcap.png
1522     bigcirc.png
1523     bigcup.png
1524     bigodot.png
1525     bigoplus.png
1526     bigotimes.png
1527     bigsqcup.png
1528     bigstar.png
1529     bigtriangledown.png
1530     bigtriangleup.png
1531     biguplus.png
1532     bigvee.png
1533     bigwedge.png
1534     blacklozenge.png
1535     blacksquare.png
1536     blacktriangle.png
1537     blacktriangledown.png
1538     blacktriangleleft.png
1539     blacktriangleright.png
1540     bot.png
1541     bowtie.png
1542     boxdot.png
1543     boxminus.png
1544     boxplus.png
1545     boxtimes.png
1546     breve.png
1547     bullet.png
1548     bumpeq.png
1549     bumpeq2.png
1550     cap.png
1551     cap2.png
1552     cases.png
1553     cdot.png
1554     cdots.png
1555     centerdot.png
1556     check.png
1557     chi.png
1558     circ.png
1559     circeq.png
1560     circlearrowleft.png
1561     circlearrowright.png
1562     circledS.png
1563     circledast.png
1564     circledcirc.png
1565     circleddash.png
1566     clubsuit.png
1567     complement.png
1568     cong.png
1569     coprod.png
1570     cup.png
1571     cup2.png
1572     curlyeqprec.png
1573     curlyeqsucc.png
1574     curlyvee.png
1575     curlywedge.png
1576     curvearrowleft.png
1577     curvearrowright.png
1578     dagger.png
1579     daleth.png
1580     dashleftarrow.png
1581     dashrightarrow.png
1582     dashv.png
1583     ddagger.png
1584     ddot.png
1585     ddots.png
1586     delim.png
1587     delta.png
1588     delta2.png
1589     diagdown.png
1590     diagup.png
1591     diamond.png
1592     diamondsuit.png
1593     digamma.png
1594     div.png
1595     divideontimes.png
1596     dot.png
1597     doteq.png
1598     doteqdot.png
1599     dotplus.png
1600     dotsint.png
1601     dotsintop.png
1602     doublebarwedge.png
1603     downarrow.png
1604     downarrow2.png
1605     downdownarrows.png
1606     downharpoonleft.png
1607     downharpoonright.png
1608     ell.png
1609     empty.png
1610     emptyset.png
1611     epsilon.png
1612     eqcirc.png
1613     eqslantgtr.png
1614     eqslantless.png
1615     equation.png
1616     equiv.png
1617     eta.png
1618     eth.png
1619     exists.png
1620     fallingdotseq.png
1621     flat.png
1622     font.png
1623     forall.png
1624     frac-square.png
1625     frac.png
1626     frown.png
1627     functions.png
1628     gamma.png
1629     gamma2.png
1630     geq.png
1631     geqq.png
1632     geqslant.png
1633     gg.png
1634     ggg.png
1635     gimel.png
1636     gnapprox.png
1637     gneq.png
1638     gneqq.png
1639     gnsim.png
1640     grave.png
1641     gtrapprox.png
1642     gtrdot.png
1643     gtreqless.png
1644     gtreqqless.png
1645     gtrless.png
1646     gtrsim.png
1647     gvertneqq.png
1648     hat.png
1649     hbar.png
1650     heartsuit.png
1651     hookleftarrow.png
1652     hookrightarrow.png
1653     hphantom.png
1654     hslash.png
1655     iiiint.png
1656     iiiintop.png
1657     iiint.png
1658     iiintop.png
1659     iint.png
1660     iintop.png
1661     imath.png
1662     in.png
1663     infty.png
1664     int.png
1665     intercal.png
1666     intop.png
1667     iota.png
1668     jmath.png
1669     kappa.png
1670     lambda.png
1671     lambda2.png
1672     langle.png
1673     lbrace.png
1674     lbrace_rbrace.png
1675     lbracket.png
1676     lbracket_rbracket.png
1677     lceil.png
1678     lceil_rceil.png
1679     ldots.png
1680     leftarrow.png
1681     leftarrow2.png
1682     leftarrowtail.png
1683     leftharpoondown.png
1684     leftharpoonup.png
1685     leftleftarrows.png
1686     leftrightarrow.png
1687     leftrightarrow2.png
1688     leftrightarrows.png
1689     leftrightharpoons.png
1690     leftrightsquigarrow.png
1691     leftthreetimes.png
1692     leq.png
1693     leqq.png
1694     leqslant.png
1695     lessapprox.png
1696     lessdot.png
1697     lesseqgtr.png
1698     lesseqqgtr.png
1699     lessgtr.png
1700     lesssim.png
1701     lfloor.png
1702     lfloor_rfloor.png
1703     ll.png
1704     llcorner.png
1705     lll.png
1706     lnapprox.png
1707     lneq.png
1708     lneqq.png
1709     lnsim.png
1710     longleftarrow.png
1711     longleftarrow2.png
1712     longleftrightarrow.png
1713     longleftrightarrow2.png
1714     longmapsto.png
1715     longrightarrow.png
1716     longrightarrow2.png
1717     looparrowleft.png
1718     looparrowright.png
1719     lozenge.png
1720     lparen.png
1721     lparen_rparen.png
1722     lrcorner.png
1723     ltimes.png
1724     lvertneqq.png
1725     mapsto.png
1726     mathbb_C.png
1727     mathbb_H.png
1728     mathbb_N.png
1729     mathbb_Q.png
1730     mathbb_R.png
1731     mathbb_Z.png
1732     mathcal_F.png
1733     mathcal_H.png
1734     mathcal_L.png
1735     mathcal_O.png
1736     mathcircumflex.png
1737     mathrm_T.png
1738     matrix.png
1739     measuredangle.png
1740     mho.png
1741     mid.png
1742     models.png
1743     mp.png
1744     mu.png
1745     multimap.png
1746     nabla.png
1747     natural.png
1748     ncong.png
1749     nearrow.png
1750     neg.png
1751     neq.png
1752     nexists.png
1753     ngeq.png
1754     ngeqq.png
1755     ngeqslant.png
1756     ngtr.png
1757     ni.png
1758     nleftarrow.png
1759     nleftarrow2.png
1760     nleftrightarrow.png
1761     nleftrightarrow2.png
1762     nleq.png
1763     nleqq.png
1764     nleqslant.png
1765     nless.png
1766     nmid.png
1767     notin.png
1768     nparallel.png
1769     nprec.png
1770     npreceq.png
1771     nrightarrow.png
1772     nrightarrow2.png
1773     nshortmid.png
1774     nshortparallel.png
1775     nsim.png
1776     nsubseteq.png
1777     nsucc.png
1778     nsucceq.png
1779     nsupseteq.png
1780     nsupseteqq.png
1781     ntriangleleft.png
1782     ntrianglelefteq.png
1783     ntriangleright.png
1784     ntrianglerighteq.png
1785     nu.png
1786     nvdash.png
1787     nvdash2.png
1788     nvdash3.png
1789     nwarrow.png
1790     odot.png
1791     oiint.png
1792     oiintop.png
1793     oint.png
1794     ointclockwise.png
1795     ointclockwiseop.png
1796     ointctrclockwise.png
1797     ointctrclockwiseop.png
1798     ointop.png
1799     omega.png
1800     omega2.png
1801     ominus.png
1802     oplus.png
1803     oslash.png
1804     otimes.png
1805     overbrace.png
1806     overleftarrow.png
1807     overleftrightarrow.png
1808     overline.png
1809     overrightarrow.png
1810     overset.png
1811     parallel.png
1812     partial.png
1813     perp.png
1814     phantom.png
1815     phi.png
1816     phi2.png
1817     pi.png
1818     pi2.png
1819     pitchfork.png
1820     pm.png
1821     prec.png
1822     precapprox.png
1823     preccurlyeq.png
1824     preceq.png
1825     precnapprox.png
1826     precnsim.png
1827     precsim.png
1828     prime.png
1829     prod.png
1830     propto.png
1831     psi.png
1832     psi2.png
1833     rangle.png
1834     rbrace.png
1835     rbracket.png
1836     rceil.png
1837     rfloor.png
1838     rho.png
1839     rightarrow.png
1840     rightarrow2.png
1841     rightarrowtail.png
1842     rightharpoondown.png
1843     rightharpoonup.png
1844     rightleftarrows.png
1845     rightleftharpoons.png
1846     rightrightarrows.png
1847     rightsquigarrow.png
1848     rightthreetimes.png
1849     risingdotseq.png
1850     root.png
1851     rparen.png
1852     rtimes.png
1853     searrow.png
1854     setminus.png
1855     sharp.png
1856     shortmid.png
1857     shortparallel.png
1858     sigma.png
1859     sigma2.png
1860     sim.png
1861     simeq.png
1862     slash.png
1863     smallfrown.png
1864     smallsetminus.png
1865     smallsmile.png
1866     smile.png
1867     space.png
1868     spadesuit.png
1869     sphericalangle.png
1870     sqcap.png
1871     sqcup.png
1872     sqiint.png
1873     sqiintop.png
1874     sqint.png
1875     sqintop.png
1876     sqrt-square.png
1877     sqrt.png
1878     sqsubset.png
1879     sqsubseteq.png
1880     sqsupset.png
1881     sqsupseteq.png
1882     square.png
1883     star.png
1884     style.png
1885     style.png
1886     sub.png
1887     subset.png
1888     subset2.png
1889     subseteq.png
1890     subseteqq.png
1891     subsetneq.png
1892     subsetneqq.png
1893     succ.png
1894     succapprox.png
1895     succcurlyeq.png
1896     succeq.png
1897     succnapprox.png
1898     succnsim.png
1899     succsim.png
1900     sum.png
1901     super.png
1902     supset.png
1903     supset2.png
1904     supseteq.png
1905     supseteqq.png
1906     supsetneq.png
1907     supsetneqq.png
1908     surd.png
1909     swarrow.png
1910     tau.png
1911     textrm_AA.png
1912     textrm_O.png
1913     therefore.png
1914     theta.png
1915     theta2.png
1916     thickapprox.png
1917     thicksim.png
1918     tilde.png
1919     times.png
1920     top.png
1921     triangle.png
1922     triangledown.png
1923     triangleleft.png
1924     trianglelefteq.png
1925     triangleq.png
1926     triangleright.png
1927     trianglerighteq.png
1928     twoheadleftarrow.png
1929     twoheadrightarrow.png
1930     ulcorner.png
1931     underbrace.png
1932     underleftarrow.png
1933     underleftrightarrow.png
1934     underline.png
1935     underrightarrow.png
1936     underscore.png
1937     underset.png
1938     uparrow.png
1939     uparrow2.png
1940     updownarrow.png
1941     updownarrow2.png
1942     upharpoonleft.png
1943     upharpoonright.png
1944     uplus.png
1945     upsilon.png
1946     upsilon2.png
1947     upuparrows.png
1948     urcorner.png
1949     varepsilon.png
1950     varkappa.png
1951     varnothing.png
1952     varphi.png
1953     varpi.png
1954     varpropto.png
1955     varrho.png
1956     varsigma.png
1957     varsubsetneq.png
1958     varsubsetneqq.png
1959     varsupsetneq.png
1960     varsupsetneqq.png
1961     vartheta.png
1962     vartriangle.png
1963     vartriangleleft.png
1964     vartriangleright.png
1965     vdash.png
1966     vdash2.png
1967     vdash3.png
1968     vdots.png
1969     vec.png
1970     vee.png
1971     veebar.png
1972     vert.png
1973     vert2.png
1974     vphantom.png
1975     wedge.png
1976     widehat.png
1977     widetilde.png
1978     wp.png
1979     wr.png
1980     xi.png
1981     xi2.png
1982     zeta.png
1983 ''')
1984
1985
1986 lib_images_math_extra_files = Split('''
1987     ams_arrows.png
1988     ams_misc.png
1989     ams_nrel.png
1990     ams_ops.png
1991     ams_rel.png
1992     arrows.png
1993     bop.png
1994     brel.png
1995     deco.png
1996     deco.png
1997     delim.png
1998     delim0.png
1999     delim1.png
2000     dots.png
2001     font.png
2002     functions.png
2003     greek.png
2004     misc.png
2005     varsz.png
2006 ''')
2007
2008
2009 lib_images_commands_files = Split('''
2010 ''')
2011
2012
2013 lib_images_attic_extra_files = Split('''
2014     dialog-show_mathpanel.png
2015 ''')
2016
2017
2018 lib_tex_files = Split('''
2019     broadway.cls
2020     hollywood.cls
2021     lyxchess.sty
2022     lyxskak.sty
2023     revtex.cls
2024 ''')
2025
2026
2027 lib_doc_files = Split('''
2028     Customization.lyx
2029     DocStyle.lyx
2030     DummyDocument1.lyx
2031     DummyDocument2.lyx
2032     DummyTextDocument.txt
2033     EmbeddedObjects.lyx
2034     Extended.lyx
2035     Formula-numbering.lyx
2036     Intro.lyx
2037     LaTeXConfig.lyx
2038     LFUNs.lyx
2039     Math.lyx
2040     Shortcuts.lyx
2041     Tutorial.lyx
2042     UserGuide.lyx
2043 ''')
2044
2045
2046 lib_doc_biblio_files = Split('''
2047     alphadin.bst
2048     LyXDocs.bib
2049 ''')
2050
2051
2052 lib_doc_clipart_files = Split('''
2053     Abstract.pdf
2054     BoxInsetDefaultQt4.png
2055     ChangesToolbar.png
2056     ChildDocumentQt4.png
2057     CommentNoteImageQt4.png
2058     ERT.png
2059     ExternalMaterialQt4.png
2060     ExtraToolbar.png
2061     GreyedOutNoteImageQt4.png
2062     LaTeX.png
2063     LyXNoteImageQt4.png
2064     SpaceMarker.png
2065     StandardToolbar.png
2066     ToolbarEnvBox.png
2067     endnotes.pdf
2068     escher-lsd.eps
2069     floatQt4.png
2070     footnoteQt4.png
2071     labelQt4.png
2072     macrobox.png
2073     macrouse.png
2074     mbox.png
2075     mobius.eps
2076     platypus.eps
2077     referenceQt4.png
2078     ViewToolbar.png
2079     with_fntright.pdf
2080     without_fntright.pdf
2081 ''')
2082
2083
2084 lib_doc_extra_files = Split('''
2085     Makefile.am
2086     README.Documentation
2087 ''')
2088
2089
2090 lib_doc_ca_files = Split('''
2091     Intro.lyx
2092 ''')
2093
2094
2095 lib_doc_cs_files = Split('''
2096     Tutorial.lyx
2097 ''')
2098
2099
2100 lib_doc_de_files = Split('''
2101     Customization.lyx
2102     DummyDocument1.lyx
2103     DummyDocument2.lyx
2104     DummyTextDocument.txt
2105     EmbeddedObjects.lyx
2106     Extended.lyx
2107     Formelnummerierung.lyx
2108     Intro.lyx
2109     Math.lyx
2110     Shortcuts.lyx
2111     Tutorial.lyx
2112     UserGuide.lyx
2113 ''')
2114
2115
2116 lib_doc_de_clipart_files = Split('''
2117     ERT.png
2118     ExternesMaterialQt4.png
2119     FussnoteQt4.png
2120     GleitobjektQt4.png
2121     GrauschriftNotizQt4.png
2122     KommentarQt4.png
2123     LyXNotizQt4.png
2124     Marke.png
2125     Querverweis.png
2126     StandardBoxQt4.png
2127     UnterdokumentQt4.png
2128 ''')
2129
2130
2131 lib_doc_da_files = Split('''
2132     Intro.lyx
2133 ''')
2134
2135
2136 lib_doc_es_files = Split('''
2137     DocumentoPostizo1.lyx
2138     DocumentoPostizo2.lyx
2139     DocumentoTextoPostizo.txt
2140     EmbeddedObjects.lyx
2141     Extended.lyx
2142     Formula-numbering.lyx
2143     Intro.lyx
2144     Math.lyx
2145     Shortcuts.lyx
2146     Tutorial.lyx
2147     UserGuide.lyx
2148 ''')
2149
2150
2151 lib_doc_es_clipart_files = Split('''
2152     ComentNotaImagenQt4.png
2153     CuadroMinipagQt4.png
2154     DocumentoHijoQt4.png
2155     GrisNotaImagenQt4.png
2156     MaterialExternoQt4.png
2157     NotaLyXImagenQt4.png
2158     Resumen.pdf
2159     es_ERT.png
2160     es_ToolbarEnvBox.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     Intro.lyx
2172     Tutorial.lyx
2173     UserGuide.lyx
2174 ''')
2175
2176
2177 lib_doc_fr_files = Split('''
2178     Customization.lyx
2179     DocumentBidon1.lyx
2180     DocumentBidon2.lyx
2181     DocumentTexteBidon.txt
2182     EmbeddedObjects.lyx
2183     Extended.lyx
2184     Formula-numbering.lyx
2185     Intro.lyx
2186     Math.lyx
2187     Tutorial.lyx
2188     UserGuide.lyx
2189 ''')
2190
2191
2192 lib_doc_fr_clipart_files = Split('''
2193     BoxInsetDefaultQt4.png
2194     ChildDocumentQt4.png
2195     CommentNoteImageQt4.png
2196     GreyedOutNoteImageQt4.png
2197     LyXNoteImageQt4.png
2198     floatQt4.png
2199     footnoteQt4.png
2200     labelQt4.png
2201 ''')
2202
2203
2204 lib_doc_gl_files = Split('''
2205     Intro.lyx
2206     Tutorial.lyx
2207 ''')
2208
2209
2210 lib_doc_he_files = Split('''
2211     Intro.lyx
2212     Tutorial.lyx
2213 ''')
2214
2215
2216 lib_doc_hu_files = Split('''
2217     Intro.lyx
2218     Tutorial.lyx
2219 ''')
2220
2221
2222 lib_doc_it_files = Split('''
2223     Customization.lyx
2224     Intro.lyx
2225     Tutorial.lyx
2226     UserGuide.lyx
2227 ''')
2228
2229
2230 lib_doc_it_clipart_files = Split('''
2231     it_footnoteQt4.png
2232     it_referenceQt4.png
2233 ''')
2234
2235
2236 lib_doc_ja_files = Split('''
2237     Extended.lyx
2238     Intro.lyx
2239     LaTeXConfig.lyx
2240     Shortcuts.lyx
2241     Tutorial.lyx
2242     UserGuide.lyx
2243 ''')
2244
2245
2246 lib_doc_ja_clipart_files = Split('''
2247     floatQt4.png
2248     footnoteQt4.png
2249     referenceQt4.png
2250     ERT.png
2251     ToolbarEnvBox.png
2252 ''')
2253
2254
2255 lib_doc_nb_files = Split('''
2256     Intro.lyx
2257 ''')
2258
2259
2260 lib_doc_nl_files = Split('''
2261     Intro.lyx
2262     Tutorial.lyx
2263 ''')
2264
2265
2266 lib_doc_pl_files = Split('''
2267     Extended.lyx
2268     Intro.lyx
2269     Tutorial.lyx
2270 ''')
2271
2272
2273 lib_doc_pt_files = Split('''
2274     Intro.lyx
2275     Tutorial.lyx
2276 ''')
2277
2278
2279 lib_doc_ro_files = Split('''
2280     Intro.lyx
2281 ''')
2282
2283
2284 lib_doc_ru_files = Split('''
2285     Intro.lyx
2286     Tutorial.lyx
2287 ''')
2288
2289
2290 lib_doc_sl_files = Split('''
2291     Intro.lyx
2292     Tutorial.lyx
2293 ''')
2294
2295
2296 lib_doc_sk_files = Split('''
2297     Tutorial.lyx
2298     UserGuide.lyx
2299 ''')
2300
2301
2302 lib_doc_sv_files = Split('''
2303     Intro.lyx
2304     Tutorial.lyx
2305 ''')
2306
2307
2308 lib_doc_uk_files = Split('''
2309     Intro.lyx
2310 ''')
2311
2312
2313 lib_doc_uk_clipart_files = Split('''
2314     FootnoteQT4.png
2315 ''')
2316
2317
2318 lib_examples_files = Split('''
2319     Braille.lyx
2320     CV-image.eps
2321     CV-image.png
2322     Foils.lyx
2323     ItemizeBullets.lyx
2324     Literate.lyx
2325     aa_sample.lyx
2326     aas_sample.lyx
2327     addressExample.adr
2328     amsart-test.lyx
2329     amsbook-test.lyx
2330     armenian-article.lyx
2331     beamer-g4-mask.jpg
2332     beamer-g4.jpg
2333     beamer-icsi-logo.pdf
2334     beamer-knight1-mask.png
2335     beamer-knight1.png
2336     beamer-knight2-mask.png
2337     beamer-knight2.png
2338     beamer-knight3-mask.png
2339     beamer-knight3.png
2340     beamer-knight4-mask.png
2341     beamer-knight4.png
2342     beamerlyxexample1.lyx
2343     biblioExample.bib
2344     chess-article.lyx
2345     chessgame.lyx
2346     docbook_article.lyx
2347     europeCV.lyx
2348     example_lyxified.lyx
2349     example_raw.lyx
2350     iecc05.fen
2351     iecc07.fen
2352     iecc12.fen
2353     landslide.lyx
2354     linguistics.lyx
2355     listerrors.lyx
2356     modernCV.lyx
2357     multicol.lyx
2358     noweb2lyx.lyx
2359     powerdot-example.lyx
2360     script_form.lyx
2361     seminar.lyx
2362     serial_letter1.lyx
2363     serial_letter2.lyx
2364     serial_letter3.lyx
2365     simplecv.lyx
2366     splash.lyx
2367     xyfigure.png
2368     xypic.lyx
2369 ''')
2370
2371
2372 lib_examples_ca_files = Split('''
2373     ItemizeBullets.lyx
2374     mathed.lyx
2375     splash.lyx
2376 ''')
2377
2378
2379 lib_examples_cs_files = Split('''
2380     splash.lyx
2381 ''')
2382
2383
2384 lib_examples_da_files = Split('''
2385     splash.lyx
2386 ''')
2387
2388
2389 lib_examples_de_files = Split('''
2390     Dezimal.lyx
2391     ItemizeBullets.lyx
2392     Lebenslauf.lyx
2393     beispiel_gelyxt.lyx
2394     beispiel_roh.lyx
2395     multicol.lyx
2396     serienbrief1.lyx
2397     serienbrief2.lyx
2398     serienbrief3.lyx
2399     splash.lyx
2400 ''')
2401
2402
2403 lib_examples_fa_files = Split('''
2404     splash.lyx
2405 ''')
2406
2407
2408 lib_examples_fr_files = Split('''
2409     AlignementDecimal.lyx
2410     Foils.lyx
2411     ListesPuces.lyx
2412     exemple_brut.lyx
2413     exemple_lyxifie.lyx
2414     multicol.lyx
2415     simplecv.lyx
2416     splash.lyx
2417 ''')
2418
2419
2420 lib_examples_es_files = Split('''
2421     ejemplo_con_lyx.lyx
2422     ejemplo_sin_lyx.lyx
2423     ItemizeBullets.lyx
2424     multicol.lyx
2425     splash.lyx
2426 ''')
2427
2428
2429 lib_examples_eu_files = Split('''
2430     adibide_gordina.lyx
2431     adibide_lyx-atua.lyx
2432     splash.lyx
2433 ''')
2434
2435
2436 lib_examples_gl_files = Split('''
2437     exemplo_bruto.lyx
2438     exemplo_lyxificado.lyx
2439     splash.lyx
2440 ''')
2441
2442
2443 lib_examples_he_files = Split('''
2444     example_lyxified.lyx
2445     example_raw.lyx
2446     splash.lyx
2447 ''')
2448
2449
2450 lib_examples_hu_files = Split('''
2451     example_lyxified.lyx
2452     example_raw.lyx
2453     splash.lyx
2454 ''')
2455
2456
2457 lib_examples_it_files = Split('''
2458     ItemizeBullets.lyx
2459     splash.lyx
2460 ''')
2461
2462
2463 lib_examples_ja_files = Split('''
2464     splash.lyx
2465 ''')
2466
2467
2468 lib_examples_nl_files = Split('''
2469     multicol.lyx
2470     opsommingstekens.lyx
2471     splash.lyx
2472     voorbeeld_ruw.lyx
2473     voorbeeld_verlyxt.lyx
2474 ''')
2475
2476
2477 lib_examples_pl_files = Split('''
2478     splash.lyx
2479 ''')
2480
2481
2482 lib_examples_pt_files = Split('''
2483     splash.lyx
2484 ''')
2485
2486
2487 lib_examples_ro_files = Split('''
2488     splash.lyx
2489 ''')
2490
2491
2492 lib_examples_ru_files = Split('''
2493     splash.lyx
2494 ''')
2495
2496
2497 lib_examples_sl_files = Split('''
2498     primer_lyxan.lyx
2499     primer_surov.lyx
2500     splash.lyx
2501 ''')
2502
2503
2504 lib_lyx2lyx_files = Split('''
2505     LyX.py
2506     generate_encoding_info.py
2507     lyx2lyx
2508     lyx2lyx_lang.py
2509     lyx_0_06.py
2510     lyx_0_08.py
2511     lyx_0_10.py
2512     lyx_0_12.py
2513     lyx_1_0.py
2514     lyx_1_1.py
2515     lyx_1_1_5.py
2516     lyx_1_1_6_0.py
2517     lyx_1_1_6_3.py
2518     lyx_1_2.py
2519     lyx_1_3.py
2520     lyx_1_4.py
2521     lyx_1_5.py
2522     lyx_1_6.py
2523     parser_tools.py
2524     profiling.py
2525     test_parser_tools.py
2526 ''')
2527
2528
2529 lib_lyx2lyx_extra_files = Split('''
2530     Makefile.am
2531     lyx2lyx_version.py.in
2532 ''')
2533
2534
2535 lib_layouts_files = Split('''
2536     aa.layout
2537     aapaper.layout
2538     aastex.layout
2539     agu-dtd.layout
2540     agums.layout
2541     amsart.layout
2542     amsbook.layout
2543     apa.layout
2544     arab-article.layout
2545     armenian-article.layout
2546     article.layout
2547     article-beamer.layout
2548     beamer.layout
2549     book.layout
2550     broadway.layout
2551     chess.layout
2552     cl2emult.layout
2553     dinbrief.layout
2554     docbook-book.layout
2555     docbook-chapter.layout
2556     docbook-section.layout
2557     docbook.layout
2558     dtk.layout
2559     egs.layout
2560     elsart.layout
2561     elsarticle.layout
2562     entcs.layout
2563     europecv.layout
2564     extarticle.layout
2565     extbook.layout
2566     extletter.layout
2567     extreport.layout
2568     foils.layout
2569     g-brief-de.layout
2570     g-brief-en.layout
2571     g-brief2.layout
2572     heb-article.layout
2573     heb-letter.layout
2574     hollywood.layout
2575     IEEEtran.layout
2576     ijmpc.layout
2577     ijmpd.layout
2578     iopart.layout
2579     isprs.layout
2580     jarticle.layout
2581     jbook.layout
2582     jgrga.layout
2583     jreport.layout
2584     jsarticle.layout
2585     jsbook.layout
2586     jss.layout
2587     kluwer.layout
2588     latex8.layout
2589     letter.layout
2590     literate-article.layout
2591     literate-book.layout
2592     literate-report.layout
2593     llncs.layout
2594     ltugboat.layout
2595     manpage.layout
2596     memoir.layout
2597     moderncv.layout
2598     mwart.layout
2599     mwbk.layout
2600     mwrep.layout
2601     paper.layout
2602     powerdot.layout
2603     report.layout
2604     revtex.layout
2605     revtex4.layout
2606     scrartcl.layout
2607     scrarticle-beamer.layout
2608     scrbook.layout
2609     scrlettr.layout
2610     scrlttr2.layout
2611     scrreprt.layout
2612     seminar.layout
2613     siamltex.layout
2614     sigplanconf.layout
2615     simplecv.layout
2616     singlecol.layout
2617     slides.layout
2618     spie.layout
2619     svglobal.layout
2620     svglobal3.layout
2621     svjog.layout
2622     svprobth.layout
2623     tarticle.layout
2624     tbook.layout
2625     treport.layout
2626 ''')
2627
2628
2629 lib_layouts_inc_files = Split('''
2630     aapaper.inc
2631     agu_stdclass.inc
2632     agu_stdcounters.inc
2633     agu_stdlists.inc
2634     agu_stdsections.inc
2635     agu_stdtitle.inc
2636     aguplus.inc
2637     amsdefs.inc
2638     db_lyxmacros.inc
2639     db_stdcharstyles.inc
2640     db_stdclass.inc
2641     db_stdcounters.inc
2642     db_stdlayouts.inc
2643     db_stdlists.inc
2644     db_stdsections.inc
2645     db_stdstarsections.inc
2646     db_stdstruct.inc
2647     db_stdtitle.inc
2648     literate-scrap.inc
2649     lyxmacros.inc
2650     numarticle.inc
2651     numreport.inc
2652     numrevtex.inc
2653     scrclass.inc
2654     stdcharstyles.inc
2655     stdclass.inc
2656     stdcounters.inc
2657     stdcustom.inc
2658     stdfloats.inc
2659     stdinsets.inc
2660     stdlayouts.inc
2661     stdletter.inc
2662     stdlists.inc
2663     stdsections.inc
2664     stdstarsections.inc
2665     stdstruct.inc
2666     stdtitle.inc
2667     svjour.inc
2668     theorems.inc
2669     theorems-ams.inc
2670     theorems-order.inc
2671     theorems-proof.inc
2672     theorems-starred.inc
2673     theorems-starred-equivalents.inc
2674 ''')
2675
2676
2677 lib_layouts_module_files = Split('''
2678     braille.module
2679     endnotes.module
2680     foottoend.module
2681     hanging.module
2682     linguistics.module
2683     logicalmkup.module
2684     minimalistic.module
2685     theorems-ams-extended.module
2686     theorems-ams.module
2687     theorems-chap.module
2688     theorems-sec.module
2689     theorems-starred.module
2690     theorems-std.module
2691 ''')
2692
2693 lib_scripts_files = Split('''
2694     TeXFiles.py
2695     clean_dvi.py
2696     convertDefault.py
2697     csv2lyx.py
2698     date.py
2699     ext_copy.py
2700     fen2ascii.py
2701     fig2pdftex.py
2702     fig2pstex.py
2703     fig_copy.py
2704     layout2layout.py
2705     legacy_lyxpreview2ppm.py
2706     listerrors
2707     lyxpreview2bitmap.py
2708     lyxpreview-platex2bitmap.py
2709     lyxpreview_tools.py
2710     tex_copy.py
2711 ''')
2712
2713
2714 lib_bind_files = Split('''
2715     aqua.bind
2716     broadway.bind
2717     cua.bind
2718     cyrkeys.bind
2719     emacs.bind
2720     greekkeys.bind
2721     hollywood.bind
2722     latinkeys.bind
2723     mac.bind
2724     math.bind
2725     menus.bind
2726     sciword.bind
2727     site.bind
2728     xemacs.bind
2729 ''')
2730
2731
2732 lib_bind_fi_files = Split('''
2733     menus.bind
2734 ''')
2735
2736
2737 lib_bind_sv_files = Split('''
2738     menus.bind
2739 ''')
2740
2741
2742 lib_bind_pt_files = Split('''
2743     menus.bind
2744 ''')
2745
2746
2747 lib_bind_de_files = Split('''
2748     menus.bind
2749 ''')
2750
2751
2752 lib_commands_files = Split('''
2753     default.def
2754 ''')
2755
2756
2757 boost_extra_files = Split('''
2758     LICENSE_1_0.txt
2759     Makefile.am
2760 ''')
2761
2762
2763 boost_libs_extra_files = Split('''
2764     Makefile.am
2765     README
2766 ''')
2767
2768
2769 boost_libs_signals_extra_files = Split('''
2770     Makefile.am
2771     signals.vcproj
2772 ''')
2773
2774
2775 boost_libs_signals_src_files = Split('''
2776     connection.cpp
2777     named_slot_map.cpp
2778     signal_base.cpp
2779     slot.cpp
2780     trackable.cpp
2781 ''')
2782
2783
2784 boost_libs_signals_src_extra_files = Split('''
2785     Makefile.am
2786     pch.h
2787 ''')
2788
2789
2790 boost_libs_regex_extra_files = Split('''
2791     Makefile.am
2792     regex.vcproj
2793 ''')
2794
2795
2796 boost_libs_regex_src_files = Split('''
2797     c_regex_traits.cpp
2798     cpp_regex_traits.cpp
2799     cregex.cpp
2800     fileiter.cpp
2801     instances.cpp
2802     posix_api.cpp
2803     regex.cpp
2804     regex_debug.cpp
2805     regex_raw_buffer.cpp
2806     regex_traits_defaults.cpp
2807     w32_regex_traits.cpp
2808     wide_posix_api.cpp
2809     winstances.cpp
2810 ''')
2811
2812
2813 boost_libs_regex_src_extra_files = Split('''
2814     Makefile.am
2815     pch.h
2816 ''')
2817
2818
2819
2820 development_Win32_packaging_installer = Split('''
2821     license.rtf
2822     lyx.nsi
2823     settings.nsh
2824 ''')
2825
2826
2827 development_Win32_packaging_installer_graphics = Split('''
2828     header.bmp
2829     wizard.bmp
2830 ''')
2831
2832
2833 development_Win32_packaging_installer_gui = Split('''
2834     external.nsh
2835     langselect.nsh
2836     reinstall.nsh
2837 ''')
2838
2839
2840 development_Win32_packaging_installer_include = Split('''
2841     declarations.nsh
2842     detection.nsh
2843     dictlist.nsh    
2844     filelist.nsh
2845     gui.nsh
2846     init.nsh
2847     langlist.nsh
2848     nsis.nsh
2849     variables.nsh
2850 ''')
2851
2852
2853 development_Win32_packaging_installer_lang = Split('''
2854     english.nsh
2855     french.nsh
2856     german.nsh
2857     italian.nsh
2858 ''')
2859
2860
2861 development_Win32_packaging_installer_setup = Split('''
2862     configure.nsh
2863     install.nsh
2864     reinstall.nsh
2865 ''')