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