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