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