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