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