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