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