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