]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
update SCons
[lyx.git] / development / scons / scons_manifest.py
1 from SCons.Util import Split
2
3 TOP_extra_files = Split('''
4     ABOUT-NLS
5     ANNOUNCE
6     COPYING
7     INSTALL
8     INSTALL.MacOSX
9     INSTALL.Win32
10     INSTALL.autoconf
11     INSTALL.cmake
12     INSTALL.scons
13     Makefile.am
14     NEWS
15     README
16     README.Cygwin
17     README.Win32
18     README.localization
19     RELEASE-NOTES
20     UPGRADING
21     autogen.sh
22     config.log
23     configure.ac
24     lyx.man
25     rename.sh
26     scons_lyx.log
27 ''')
28
29
30 src_header_files = Split('''
31     ASpell_local.h
32     Author.h
33     BiblioInfo.h
34     Bidi.h
35     Box.h
36     BranchList.h
37     Buffer.h
38     BufferList.h
39     BufferParams.h
40     BufferView.h
41     Bullet.h
42     Changes.h
43     Chktex.h
44     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     InsetLabel.h
1032     InsetLine.h
1033     InsetListings.h
1034     InsetListingsParams.h
1035     InsetMarginal.h
1036     InsetNewline.h
1037     InsetNomencl.h
1038     InsetNote.h
1039     InsetOptArg.h
1040     InsetPagebreak.h
1041     InsetQuotes.h
1042     InsetRef.h
1043     InsetSpace.h
1044     InsetSpecialChar.h
1045     InsetTOC.h
1046     InsetTabular.h
1047     InsetText.h
1048     InsetUrl.h
1049     InsetVSpace.h
1050     InsetWrap.h
1051     MailInset.h
1052     RenderBase.h
1053     RenderButton.h
1054     RenderGraphic.h
1055     RenderPreview.h
1056 ''')
1057
1058
1059 src_insets_files = Split('''
1060     ExternalSupport.cpp
1061     ExternalTemplate.cpp
1062     ExternalTransforms.cpp
1063     Inset.cpp
1064     InsetBibitem.cpp
1065     InsetBibtex.cpp
1066     InsetBox.cpp
1067     InsetBranch.cpp
1068     InsetCaption.cpp
1069     InsetCitation.cpp
1070     InsetCollapsable.cpp
1071     InsetCommand.cpp
1072     InsetCommandParams.cpp
1073     InsetERT.cpp
1074     InsetEnvironment.cpp
1075     InsetExternal.cpp
1076     InsetFlex.cpp
1077     InsetFloat.cpp
1078     InsetFloatList.cpp
1079     InsetFoot.cpp
1080     InsetFootlike.cpp
1081     InsetGraphics.cpp
1082     InsetGraphicsParams.cpp
1083     InsetHFill.cpp
1084     InsetInclude.cpp
1085     InsetIndex.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     InsetUrl.cpp
1104     InsetVSpace.cpp
1105     InsetWrap.cpp
1106     MailInset.cpp
1107     RenderButton.cpp
1108     RenderGraphic.cpp
1109     RenderPreview.cpp
1110 ''')
1111
1112
1113 src_insets_extra_files = Split('''
1114     InsetTheorem.cpp
1115     InsetTheorem.h
1116     Makefile.am
1117     pch.h
1118 ''')
1119
1120
1121 intl_header_files = Split('''
1122     eval-plural.h
1123     gettextP.h
1124     gmo.h
1125     hash-string.h
1126     loadinfo.h
1127     localcharset.h
1128     os2compat.h
1129     plural-exp.h
1130     printf-args.h
1131     printf-parse.h
1132     relocatable.h
1133     vasnprintf.h
1134     vasnwprintf.h
1135     wprintf-parse.h
1136     xsize.h
1137 ''')
1138
1139
1140 intl_files = Split('''
1141     bindtextdom.c
1142     dcgettext.c
1143     dcigettext.c
1144     dcngettext.c
1145     dgettext.c
1146     dngettext.c
1147     explodename.c
1148     finddomain.c
1149     gettext.c
1150     intl-compat.c
1151     l10nflist.c
1152     langprefs.c
1153     loadmsgcat.c
1154     localcharset.c
1155     localealias.c
1156     localename.c
1157     log.c
1158     ngettext.c
1159     osdep.c
1160     plural-exp.c
1161     plural.c
1162     printf.c
1163     relocatable.c
1164     textdomain.c
1165 ''')
1166
1167
1168 intl_extra_files = Split('''
1169     VERSION
1170     config.charset
1171     libgnuintl.h.in
1172     locale.alias
1173     os2compat.c
1174     plural.y
1175     printf-args.c
1176     printf-parse.c
1177     ref-add.sin
1178     ref-del.sin
1179     vasnprintf.c
1180 ''')
1181
1182
1183 config_extra_files = Split('''
1184     Makefile.am
1185     common.am
1186     config.guess
1187     config.rpath
1188     config.sub
1189     depcomp
1190     install-sh
1191     libtool.m4
1192     ltmain.sh
1193     lyxinclude.m4
1194     missing
1195     mkinstalldirs
1196     pkg.m4
1197     py-compile
1198     qt4.m4
1199     spell.m4
1200 ''')
1201
1202
1203 sourcedoc_extra_files = Split('''
1204     Doxyfile.in
1205     Makefile.am
1206 ''')
1207
1208
1209 po_extra_files = Split('''
1210     LINGUAS
1211     Makefile.in.in
1212     Makevars
1213     POTFILES.in
1214     README
1215     Rules-quot
1216     bg.po
1217     boldquot.sed
1218     ca.po
1219     cs.po
1220     da.po
1221     de.po
1222     en@boldquot.header
1223     en@quot.header
1224     es.po
1225     eu.po
1226     fi.po
1227     fr.po
1228     gl.po
1229     he.po
1230     hu.po
1231     insert-header.sin
1232     it.po
1233     ja.po
1234     ko.po
1235     lyx_pot.py
1236     nb.po
1237     nl.po
1238     nn.po
1239     pl.po
1240     pocheck.pl
1241     postats.sh
1242     pt.po
1243     quot.sed
1244     remove-potcdate.sin
1245     ro.po
1246     ru.po
1247     sk.po
1248     sl.po
1249     sv.po
1250     tr.po
1251     wa.po
1252     zh_CN.po
1253     zh_TW.po
1254 ''')
1255
1256
1257 lib_files = Split('''
1258     CREDITS
1259     chkconfig.ltx
1260     configure.py
1261     encodings
1262     external_templates
1263     languages
1264     symbols
1265     syntax.default
1266     unicodesymbols
1267 ''')
1268
1269
1270 lib_extra_files = Split('''
1271     Makefile.am
1272     autocorrect
1273     build-listerrors
1274     generate_contributions.py
1275 ''')
1276
1277
1278 lib_kbd_files = Split('''
1279     american-2.kmap
1280     american.kmap
1281     arabic.kmap
1282     bg-bds-1251.kmap
1283     brazil.kmap
1284     brazil2.kmap
1285     czech-prg.kmap
1286     czech.kmap
1287     espanol.kmap
1288     european.kmap
1289     farsi.kmap
1290     francais.kmap
1291     french.kmap
1292     german-2.kmap
1293     german-3.kmap
1294     german.kmap
1295     greek.kmap
1296     hebrew.kmap
1297     koi8-r.kmap
1298     koi8-u.kmap
1299     latvian.kmap
1300     magyar-2.kmap
1301     magyar-3.kmap
1302     magyar.kmap
1303     null.kmap
1304     polish.kmap
1305     polski.kmap
1306     portuges.kmap
1307     romanian.kmap
1308     serbian.kmap
1309     serbocroatian.kmap
1310     sf.kmap
1311     sg.kmap
1312     slovak.kmap
1313     slovene.kmap
1314     thai-kedmanee.kmap
1315     transilvanian.kmap
1316     turkish-f.kmap
1317     turkish.kmap
1318 ''')
1319
1320
1321 lib_templates_files = Split('''
1322     IEEEtran.lyx
1323     README.new_templates
1324     aa.lyx
1325     aastex.lyx
1326     agu_article.lyx
1327     apa.lyx
1328     beamer-conference-ornate-20min.lyx
1329     de_beamer-conference-ornate-20min.lyx
1330     dinbrief.lyx
1331     docbook_article.lyx
1332     elsart.lyx
1333     fr_beamer-conference-ornate-20min.lyx
1334     g-brief-de.lyx
1335     g-brief-en.lyx
1336     g-brief2.lyx
1337     hollywood.lyx
1338     ijmpc.lyx
1339     ijmpd.lyx
1340     iop-article.lyx
1341     kluwer.lyx
1342     koma-letter2.lyx
1343     latex8.lyx
1344     letter.lyx
1345     revtex.lyx
1346     revtex4.lyx
1347     slides.lyx
1348 ''')
1349
1350
1351 lib_ui_files = Split('''
1352     classic.ui
1353     default.ui
1354     stdmenus.inc
1355     stdtoolbars.inc
1356 ''')
1357
1358
1359 lib_fonts_files = Split('''
1360     BaKoMaFontLicense.txt
1361     ReadmeBaKoMa4LyX.txt
1362     cmex10.ttf
1363     cmmi10.ttf
1364     cmr10.ttf
1365     cmsy10.ttf
1366     esint10.ttf
1367     eufm10.ttf
1368     msam10.ttf
1369     msbm10.ttf
1370     wasy10.ttf
1371 ''')
1372
1373
1374 lib_images_files = Split('''
1375     all-changes-accept.png
1376     all-changes-reject.png
1377     amssymb.png
1378     banner.png
1379     bookmark-goto.png
1380     bookmark-save.png
1381     break-line.png
1382     buffer-close.png
1383     buffer-export_dvi.png
1384     buffer-export_latex.png
1385     buffer-export_pdf2.png
1386     buffer-export_ps.png
1387     buffer-export_text.png
1388     buffer-new.png
1389     buffer-reload.png
1390     buffer-update_dvi.png
1391     buffer-update_pdf2.png
1392     buffer-update_ps.png
1393     buffer-view_dvi.png
1394     buffer-view_pdf2.png
1395     buffer-view_ps.png
1396     buffer-write-as.png
1397     buffer-write.png
1398     build-program.png
1399     change-accept.png
1400     change-next.png
1401     change-reject.png
1402     changes-merge.png
1403     changes-output.png
1404     changes-track.png
1405     closetab.png
1406     copy.png
1407     cut.png
1408     demote.png
1409     depth-decrement.png
1410     depth-increment.png
1411     dialog-preferences.png
1412     dialog-show-new-inset_citation.png
1413     dialog-show-new-inset_graphics.png
1414     dialog-show-new-inset_include.png
1415     dialog-show-new-inset_ref.png
1416     dialog-show_character.png
1417     dialog-show_findreplace.png
1418     dialog-show_mathdelimiter.png
1419     dialog-show_mathmatrix.png
1420     dialog-show_print.png
1421     dialog-show_spellchecker.png
1422     dialog-toggle_toc.png
1423     down.png
1424     ert-insert.png
1425     file-open.png
1426     float-insert_figure.png
1427     float-insert_table.png
1428     font-bold.png
1429     font-emph.png
1430     font-free-apply.png
1431     font-noun.png
1432     font-sans.png
1433     footnote-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     url-insert.png
1497 ''')
1498
1499
1500 lib_images_extra_files = Split('''
1501     README
1502     font-smallcaps.png
1503 ''')
1504
1505
1506 lib_images_math_files = Split('''
1507     Bbbk.png
1508     Finv.png
1509     Game.png
1510     Im.png
1511     Lleftarrow.png
1512     Lsh.png
1513     Re.png
1514     Rrightarrow.png
1515     Rsh.png
1516     Vert.png
1517     Vvdash.png
1518     acute.png
1519     aleph.png
1520     alpha.png
1521     amalg.png
1522     angle.png
1523     approx.png
1524     approxeq.png
1525     asymp.png
1526     backepsilon.png
1527     backprime.png
1528     backsim.png
1529     backsimeq.png
1530     backslash.png
1531     bar.png
1532     bars.png
1533     barwedge.png
1534     because.png
1535     beta.png
1536     beth.png
1537     between.png
1538     bigcap.png
1539     bigcirc.png
1540     bigcup.png
1541     bigodot.png
1542     bigoplus.png
1543     bigotimes.png
1544     bigsqcup.png
1545     bigstar.png
1546     bigtriangledown.png
1547     bigtriangleup.png
1548     biguplus.png
1549     bigvee.png
1550     bigwedge.png
1551     blacklozenge.png
1552     blacksquare.png
1553     blacktriangle.png
1554     blacktriangledown.png
1555     blacktriangleleft.png
1556     blacktriangleright.png
1557     bot.png
1558     bowtie.png
1559     boxdot.png
1560     boxminus.png
1561     boxplus.png
1562     boxtimes.png
1563     breve.png
1564     bullet.png
1565     bumpeq.png
1566     bumpeq2.png
1567     cap.png
1568     cap2.png
1569     cases.png
1570     cdot.png
1571     cdots.png
1572     centerdot.png
1573     check.png
1574     chi.png
1575     circ.png
1576     circeq.png
1577     circlearrowleft.png
1578     circlearrowright.png
1579     circledS.png
1580     circledast.png
1581     circledcirc.png
1582     circleddash.png
1583     clubsuit.png
1584     complement.png
1585     cong.png
1586     coprod.png
1587     cup.png
1588     cup2.png
1589     curlyeqprec.png
1590     curlyeqsucc.png
1591     curlyvee.png
1592     curlywedge.png
1593     curvearrowleft.png
1594     curvearrowright.png
1595     dagger.png
1596     daleth.png
1597     dashleftarrow.png
1598     dashrightarrow.png
1599     dashv.png
1600     ddagger.png
1601     ddot.png
1602     ddots.png
1603     delim.png
1604     delta.png
1605     delta2.png
1606     diagdown.png
1607     diagup.png
1608     diamond.png
1609     diamondsuit.png
1610     digamma.png
1611     div.png
1612     divideontimes.png
1613     dot.png
1614     doteq.png
1615     doteqdot.png
1616     dotplus.png
1617     dotsint.png
1618     dotsintop.png
1619     doublebarwedge.png
1620     downarrow.png
1621     downarrow2.png
1622     downdownarrows.png
1623     downharpoonleft.png
1624     downharpoonright.png
1625     ell.png
1626     empty.png
1627     emptyset.png
1628     epsilon.png
1629     eqcirc.png
1630     eqslantgtr.png
1631     eqslantless.png
1632     equation.png
1633     equiv.png
1634     eta.png
1635     eth.png
1636     exists.png
1637     fallingdotseq.png
1638     flat.png
1639     font.png
1640     forall.png
1641     frac-square.png
1642     frac.png
1643     frown.png
1644     functions.png
1645     gamma.png
1646     gamma2.png
1647     geq.png
1648     geqq.png
1649     geqslant.png
1650     gg.png
1651     ggg.png
1652     gimel.png
1653     gnapprox.png
1654     gneq.png
1655     gneqq.png
1656     gnsim.png
1657     grave.png
1658     gtrapprox.png
1659     gtrdot.png
1660     gtreqless.png
1661     gtreqqless.png
1662     gtrless.png
1663     gtrsim.png
1664     gvertneqq.png
1665     hat.png
1666     hbar.png
1667     heartsuit.png
1668     hookleftarrow.png
1669     hookrightarrow.png
1670     hphantom.png
1671     hslash.png
1672     iiiint.png
1673     iiiintop.png
1674     iiint.png
1675     iiintop.png
1676     iint.png
1677     iintop.png
1678     imath.png
1679     in.png
1680     infty.png
1681     int.png
1682     intercal.png
1683     intop.png
1684     iota.png
1685     jmath.png
1686     kappa.png
1687     lambda.png
1688     lambda2.png
1689     langle.png
1690     lbrace.png
1691     lbrace_rbrace.png
1692     lbracket.png
1693     lbracket_rbracket.png
1694     lceil.png
1695     lceil_rceil.png
1696     ldots.png
1697     leftarrow.png
1698     leftarrow2.png
1699     leftarrowtail.png
1700     leftharpoondown.png
1701     leftharpoonup.png
1702     leftleftarrows.png
1703     leftrightarrow.png
1704     leftrightarrow2.png
1705     leftrightarrows.png
1706     leftrightharpoons.png
1707     leftrightsquigarrow.png
1708     leftthreetimes.png
1709     leq.png
1710     leqq.png
1711     leqslant.png
1712     lessapprox.png
1713     lessdot.png
1714     lesseqgtr.png
1715     lesseqqgtr.png
1716     lessgtr.png
1717     lesssim.png
1718     lfloor.png
1719     lfloor_rfloor.png
1720     ll.png
1721     llcorner.png
1722     lll.png
1723     lnapprox.png
1724     lneq.png
1725     lneqq.png
1726     lnsim.png
1727     longleftarrow.png
1728     longleftarrow2.png
1729     longleftrightarrow.png
1730     longleftrightarrow2.png
1731     longmapsto.png
1732     longrightarrow.png
1733     longrightarrow2.png
1734     looparrowleft.png
1735     looparrowright.png
1736     lozenge.png
1737     lparen.png
1738     lparen_rparen.png
1739     lrcorner.png
1740     ltimes.png
1741     lvertneqq.png
1742     mapsto.png
1743     mathbb_C.png
1744     mathbb_H.png
1745     mathbb_N.png
1746     mathbb_Q.png
1747     mathbb_R.png
1748     mathbb_Z.png
1749     mathcal_F.png
1750     mathcal_H.png
1751     mathcal_L.png
1752     mathcal_O.png
1753     mathcircumflex.png
1754     mathrm_T.png
1755     matrix.png
1756     measuredangle.png
1757     mho.png
1758     mid.png
1759     models.png
1760     mp.png
1761     mu.png
1762     multimap.png
1763     nabla.png
1764     natural.png
1765     ncong.png
1766     nearrow.png
1767     neg.png
1768     neq.png
1769     nexists.png
1770     ngeq.png
1771     ngeqq.png
1772     ngeqslant.png
1773     ngtr.png
1774     ni.png
1775     nleftarrow.png
1776     nleftarrow2.png
1777     nleftrightarrow.png
1778     nleftrightarrow2.png
1779     nleq.png
1780     nleqq.png
1781     nleqslant.png
1782     nless.png
1783     nmid.png
1784     notin.png
1785     nparallel.png
1786     nprec.png
1787     npreceq.png
1788     nrightarrow.png
1789     nrightarrow2.png
1790     nshortmid.png
1791     nshortparallel.png
1792     nsim.png
1793     nsubseteq.png
1794     nsucc.png
1795     nsucceq.png
1796     nsupseteq.png
1797     nsupseteqq.png
1798     ntriangleleft.png
1799     ntrianglelefteq.png
1800     ntriangleright.png
1801     ntrianglerighteq.png
1802     nu.png
1803     nvdash.png
1804     nvdash2.png
1805     nvdash3.png
1806     nwarrow.png
1807     odot.png
1808     oiint.png
1809     oiintop.png
1810     oint.png
1811     ointclockwise.png
1812     ointclockwiseop.png
1813     ointctrclockwise.png
1814     ointctrclockwiseop.png
1815     ointop.png
1816     omega.png
1817     omega2.png
1818     ominus.png
1819     oplus.png
1820     oslash.png
1821     otimes.png
1822     overbrace.png
1823     overleftarrow.png
1824     overleftrightarrow.png
1825     overline.png
1826     overrightarrow.png
1827     overset.png
1828     parallel.png
1829     partial.png
1830     perp.png
1831     phantom.png
1832     phi.png
1833     phi2.png
1834     pi.png
1835     pi2.png
1836     pitchfork.png
1837     pm.png
1838     prec.png
1839     precapprox.png
1840     preccurlyeq.png
1841     preceq.png
1842     precnapprox.png
1843     precnsim.png
1844     precsim.png
1845     prime.png
1846     prod.png
1847     propto.png
1848     psi.png
1849     psi2.png
1850     rangle.png
1851     rbrace.png
1852     rbracket.png
1853     rceil.png
1854     rfloor.png
1855     rho.png
1856     rightarrow.png
1857     rightarrow2.png
1858     rightarrowtail.png
1859     rightharpoondown.png
1860     rightharpoonup.png
1861     rightleftarrows.png
1862     rightleftharpoons.png
1863     rightrightarrows.png
1864     rightsquigarrow.png
1865     rightthreetimes.png
1866     risingdotseq.png
1867     root.png
1868     rparen.png
1869     rtimes.png
1870     searrow.png
1871     setminus.png
1872     sharp.png
1873     shortmid.png
1874     shortparallel.png
1875     sigma.png
1876     sigma2.png
1877     sim.png
1878     simeq.png
1879     slash.png
1880     smallfrown.png
1881     smallsetminus.png
1882     smallsmile.png
1883     smile.png
1884     space.png
1885     spadesuit.png
1886     sphericalangle.png
1887     sqcap.png
1888     sqcup.png
1889     sqiint.png
1890     sqiintop.png
1891     sqint.png
1892     sqintop.png
1893     sqrt-square.png
1894     sqrt.png
1895     sqsubset.png
1896     sqsubseteq.png
1897     sqsupset.png
1898     sqsupseteq.png
1899     square.png
1900     star.png
1901     style.png
1902     style.png
1903     sub.png
1904     subset.png
1905     subset2.png
1906     subseteq.png
1907     subseteqq.png
1908     subsetneq.png
1909     subsetneqq.png
1910     succ.png
1911     succapprox.png
1912     succcurlyeq.png
1913     succeq.png
1914     succnapprox.png
1915     succnsim.png
1916     succsim.png
1917     sum.png
1918     super.png
1919     supset.png
1920     supset2.png
1921     supseteq.png
1922     supseteqq.png
1923     supsetneq.png
1924     supsetneqq.png
1925     surd.png
1926     swarrow.png
1927     tau.png
1928     textrm_AA.png
1929     textrm_Oe.png
1930     therefore.png
1931     theta.png
1932     theta2.png
1933     thickapprox.png
1934     thicksim.png
1935     tilde.png
1936     times.png
1937     top.png
1938     triangle.png
1939     triangledown.png
1940     triangleleft.png
1941     trianglelefteq.png
1942     triangleq.png
1943     triangleright.png
1944     trianglerighteq.png
1945     twoheadleftarrow.png
1946     twoheadrightarrow.png
1947     ulcorner.png
1948     underbrace.png
1949     underleftarrow.png
1950     underleftrightarrow.png
1951     underline.png
1952     underrightarrow.png
1953     underscore.png
1954     underset.png
1955     uparrow.png
1956     uparrow2.png
1957     updownarrow.png
1958     updownarrow2.png
1959     upharpoonleft.png
1960     upharpoonright.png
1961     uplus.png
1962     upsilon.png
1963     upsilon2.png
1964     upuparrows.png
1965     urcorner.png
1966     varepsilon.png
1967     varkappa.png
1968     varnothing.png
1969     varphi.png
1970     varpi.png
1971     varpropto.png
1972     varrho.png
1973     varsigma.png
1974     varsubsetneq.png
1975     varsubsetneqq.png
1976     varsupsetneq.png
1977     varsupsetneqq.png
1978     vartheta.png
1979     vartriangle.png
1980     vartriangleleft.png
1981     vartriangleright.png
1982     vdash.png
1983     vdash2.png
1984     vdash3.png
1985     vdots.png
1986     vec.png
1987     vee.png
1988     veebar.png
1989     vphantom.png
1990     wedge.png
1991     widehat.png
1992     widetilde.png
1993     wp.png
1994     wr.png
1995     xi.png
1996     xi2.png
1997     zeta.png
1998 ''')
1999
2000
2001 lib_images_math_extra_files = Split('''
2002     ams_arrows.png
2003     ams_misc.png
2004     ams_nrel.png
2005     ams_ops.png
2006     ams_rel.png
2007     arrows.png
2008     bop.png
2009     brel.png
2010     deco.png
2011     deco.png
2012     delim.png
2013     delim0.png
2014     delim1.png
2015     dots.png
2016     font.png
2017     functions.png
2018     greek.png
2019     misc.png
2020     varsz.png
2021 ''')
2022
2023
2024 lib_images_attic_extra_files = Split('''
2025     dialog-show_mathpanel.png
2026 ''')
2027
2028
2029 lib_tex_files = Split('''
2030     broadway.cls
2031     hollywood.cls
2032     lyxchess.sty
2033     lyxskak.sty
2034     revtex.cls
2035 ''')
2036
2037
2038 lib_doc_files = Split('''
2039     Customization.lyx
2040     DocStyle.lyx
2041     DummyDocument1.lyx
2042     DummyDocument2.lyx
2043     DummyTextDocument.txt
2044     EmbeddedObjects.lyx
2045     Extended.lyx
2046     FAQ.lyx
2047     Intro.lyx
2048     LaTeXConfig.lyx.in
2049     Reference.lyx
2050     Tutorial.lyx
2051     UserGuide.lyx
2052 ''')
2053
2054
2055 lib_doc_biblio_files = Split('''
2056     alphadin.bst
2057     LyXDocs.bib
2058 ''')
2059
2060
2061 lib_doc_clipart_files = Split('''
2062     Abstract.pdf
2063     BoxInsetDefaultQt4.png
2064     ChangesToolbar.png
2065     ChildDocumentQt4.png
2066     CommentNoteImageQt4.png
2067     ERT.png
2068     ExternalMaterialQt4.png
2069     ExtraToolbar.png
2070     FramedNoteImageQt4.png
2071     GreyedOutNoteImageQt4.png
2072     LaTeX.png
2073     LyXNoteImageQt4.png
2074     ShadedNoteImageQt4.png
2075     SpaceMarker.png
2076     StandardToolbar.png
2077     ToolbarEnvBox.png
2078     endnotes.pdf
2079     escher-lsd.eps
2080     floatQt4.png
2081     footnoteQt4.png
2082     labelQt4.png
2083     macrobox.png
2084     macrouse.png
2085     mbox.png
2086     mobius.eps
2087     platypus.eps
2088     referenceQt4.png
2089     ViewToolbar.png
2090     with_fntright.pdf
2091     without_fntright.pdf
2092 ''')
2093
2094
2095 lib_doc_extra_files = Split('''
2096     Makefile.am
2097     Makefile.depend
2098     README.Documentation
2099     depend.py
2100     doc_toc.py
2101 ''')
2102
2103
2104 lib_doc_cs_files = Split('''
2105     Tutorial.lyx
2106 ''')
2107
2108
2109 lib_doc_de_files = Split('''
2110     Customization.lyx
2111     DummyDocument1.lyx
2112     DummyDocument2.lyx
2113     DummyTextDocument.txt
2114     EmbeddedObjects.lyx
2115     Extended.lyx
2116     FAQ.lyx
2117     Intro.lyx
2118     Tutorial.lyx
2119     UserGuide.lyx
2120 ''')
2121
2122
2123 lib_doc_de_clipart_files = Split('''
2124     ExternesMaterialQt4.png
2125     FussnoteQt4.png
2126     GerahmteNotizQt4.png
2127     GleitobjektQt4.png
2128     GrauschriftNotizQt4.png
2129     KommentarQt4.png
2130     LyXNotizQt4.png
2131     Marke.png
2132     Querverweis.png
2133     SchattierteNotizQt4.png
2134     StandardBoxQt4.png
2135     UnterdokumentQt4.png
2136 ''')
2137
2138
2139 lib_doc_da_files = Split('''
2140     Intro.lyx
2141 ''')
2142
2143
2144 lib_doc_es_files = Split('''
2145     DocumentoPostizo1.lyx
2146     DocumentoPostizo2.lyx
2147     DocumentoTextoPostizo.txt
2148     EmbeddedObjects.lyx
2149     Extended.lyx
2150     Intro.lyx
2151     Tutorial.lyx
2152     UserGuide.lyx
2153 ''')
2154
2155
2156 lib_doc_es_biblio_files = Split('''
2157     alphadin.bst
2158     LyXDocs.bib
2159 ''')
2160
2161
2162 lib_doc_es_clipart_files = Split('''
2163     ComentNotaImagenQt4.png
2164     CuadroMinipagQt4.png
2165     DocumentoHijoQt4.png
2166     GrisNotaImagenQt4.png
2167     MaterialExternoQt4.png
2168     NotaEnmarcadaImg.png
2169     NotaLyXImagenQt4.png
2170     NotaSombreadaImg.png
2171     Resumen.pdf
2172     es_ERT.png
2173     etiquetaQt4.png
2174     flotanteQt4.png
2175     notapieQt4.png
2176     referenciaQt4.png
2177 ''')
2178
2179
2180 lib_doc_eu_files = Split('''
2181     Customization.lyx
2182     Extended.lyx
2183     FAQ.lyx
2184     Intro.lyx
2185     Tutorial.lyx
2186     UserGuide.lyx
2187 ''')
2188
2189
2190 lib_doc_fr_files = Split('''
2191     Customization.lyx
2192     Extended.lyx
2193     FAQ.lyx
2194     Intro.lyx
2195     Tutorial.lyx
2196     UserGuide.lyx
2197 ''')
2198
2199
2200 lib_doc_gl_extra_files = Split('''
2201     Intro.lyx
2202     Tutorial.lyx
2203 ''')
2204
2205
2206 lib_doc_he_files = Split('''
2207     Intro.lyx
2208     Tutorial.lyx
2209 ''')
2210
2211
2212 lib_doc_hu_files = Split('''
2213     Intro.lyx
2214     Tutorial.lyx
2215 ''')
2216
2217
2218 lib_doc_it_files = Split('''
2219     Customization.lyx
2220     Intro.lyx
2221     Tutorial.lyx
2222     UserGuide.lyx
2223 ''')
2224
2225
2226 lib_doc_nb_files = Split('''
2227     Intro.lyx
2228 ''')
2229
2230
2231 lib_doc_nl_files = Split('''
2232     Intro.lyx
2233     Tutorial.lyx
2234 ''')
2235
2236
2237 lib_doc_pl_files = Split('''
2238     Extended.lyx
2239     Intro.lyx
2240     Tutorial.lyx
2241 ''')
2242
2243
2244 lib_doc_pt_files = Split('''
2245     Intro.lyx
2246     Tutorial.lyx
2247 ''')
2248
2249
2250 lib_doc_ro_files = Split('''
2251     Intro.lyx
2252 ''')
2253
2254
2255 lib_doc_ru_files = Split('''
2256     FAQ.lyx
2257     Intro.lyx
2258     Tutorial.lyx
2259 ''')
2260
2261
2262 lib_doc_sl_files = Split('''
2263     Intro.lyx
2264     Tutorial.lyx
2265 ''')
2266
2267
2268 lib_doc_sk_files = Split('''
2269     Tutorial.lyx
2270     UserGuide.lyx
2271 ''')
2272
2273
2274 lib_doc_sv_files = Split('''
2275     Intro.lyx
2276     Tutorial.lyx
2277 ''')
2278
2279
2280 lib_examples_files = Split('''
2281     CV-image.eps
2282     CV-image.png
2283     Foils.lyx
2284     ItemizeBullets.lyx
2285     Literate.lyx
2286     Minipage.lyx
2287     aa_sample.lyx
2288     aas_sample.lyx
2289     amsart-test.lyx
2290     amsbook-test.lyx
2291     armenian-article.lyx
2292     beamer-g4-mask.jpg
2293     beamer-g4.jpg
2294     beamer-icsi-logo.pdf
2295     beamer-knight1-mask.png
2296     beamer-knight1.png
2297     beamer-knight2-mask.png
2298     beamer-knight2.png
2299     beamer-knight3-mask.png
2300     beamer-knight3.png
2301     beamer-knight4-mask.png
2302     beamer-knight4.png
2303     beamerlyxexample1.lyx
2304     biblioExample.bib
2305     chess-article.lyx
2306     chessgame.lyx
2307     currency.lyx
2308     docbook_article.lyx
2309     europeCV.lyx
2310     example_lyxified.lyx
2311     example_raw.lyx
2312     iecc05.fen
2313     iecc07.fen
2314     iecc12.fen
2315     landslide.lyx
2316     listerrors.lyx
2317     listings.lyx
2318     mathed.lyx
2319     modernCV.lyx
2320     multicol.lyx
2321     noweb2lyx.lyx
2322     powerdot-example.lyx
2323     script_form.lyx
2324     simplecv.lyx
2325     splash.lyx
2326 ''')
2327
2328
2329 lib_examples_ca_files = Split('''
2330     splash.lyx
2331 ''')
2332
2333
2334 lib_examples_cs_files = Split('''
2335     splash.lyx
2336 ''')
2337
2338
2339 lib_examples_da_files = Split('''
2340     splash.lyx
2341 ''')
2342
2343
2344 lib_examples_de_files = Split('''
2345     Dezimal.lyx
2346     ItemizeBullets.lyx
2347     Lebenslauf.lyx
2348     Minipage.lyx
2349     TabellenBeispiel.lyx
2350     Waehrungen.lyx
2351     beispiel_gelyxt.lyx
2352     beispiel_roh.lyx
2353     mathed.lyx
2354     multicol.lyx
2355     splash.lyx
2356 ''')
2357
2358
2359 lib_examples_fa_files = Split('''
2360     splash.lyx
2361 ''')
2362
2363
2364 lib_examples_fr_files = Split('''
2365     AlignementDecimal.lyx
2366     simplecv.lyx
2367     ExemplesTableaux.lyx
2368     Foils.lyx
2369     ListesPuces.lyx
2370     Minipage.lyx
2371     exemple_brut.lyx
2372     exemple_lyxifie.lyx
2373     mathed.lyx
2374     multicol.lyx
2375     splash.lyx
2376 ''')
2377
2378
2379 lib_examples_es_files = Split('''
2380     ejemplo_con_lyx.lyx
2381     ejemplo_sin_lyx.lyx
2382     splash.lyx
2383 ''')
2384
2385
2386 lib_examples_eu_files = Split('''
2387     adibide_gordina.lyx
2388     adibide_lyx-atua.lyx
2389     splash.lyx
2390 ''')
2391
2392
2393 lib_examples_gl_extra_files = Split('''
2394     exemplo_bruto.lyx
2395     exemplo_lyxificado.lyx
2396     splash.lyx
2397 ''')
2398
2399
2400 lib_examples_he_files = Split('''
2401     example_lyxified.lyx
2402     example_raw.lyx
2403     splash.lyx
2404 ''')
2405
2406
2407 lib_examples_hu_files = Split('''
2408     example_lyxified.lyx
2409     example_raw.lyx
2410     splash.lyx
2411 ''')
2412
2413
2414 lib_examples_it_files = Split('''
2415     ItemizeBullets.lyx
2416     splash.lyx
2417 ''')
2418
2419
2420 lib_examples_nl_files = Split('''
2421     multicol.lyx
2422     opsommingstekens.lyx
2423     splash.lyx
2424     voorbeeld_ruw.lyx
2425     voorbeeld_verlyxt.lyx
2426 ''')
2427
2428
2429 lib_examples_pl_files = Split('''
2430     splash.lyx
2431 ''')
2432
2433
2434 lib_examples_pt_files = Split('''
2435     splash.lyx
2436 ''')
2437
2438
2439 lib_examples_ro_files = Split('''
2440     splash.lyx
2441 ''')
2442
2443
2444 lib_examples_ru_files = Split('''
2445     splash.lyx
2446 ''')
2447
2448
2449 lib_examples_sl_files = Split('''
2450     primer_lyxan.lyx
2451     primer_surov.lyx
2452     splash.lyx
2453 ''')
2454
2455
2456 lib_lyx2lyx_files = Split('''
2457     LyX.py
2458     generate_encoding_info.py
2459     lyx2lyx
2460     lyx2lyx_lang.py
2461     lyx_0_06.py
2462     lyx_0_08.py
2463     lyx_0_10.py
2464     lyx_0_12.py
2465     lyx_1_0.py
2466     lyx_1_1.py
2467     lyx_1_1_5.py
2468     lyx_1_1_6_0.py
2469     lyx_1_1_6_3.py
2470     lyx_1_2.py
2471     lyx_1_3.py
2472     lyx_1_4.py
2473     lyx_1_5.py
2474     lyx_1_6.py
2475     parser_tools.py
2476     profiling.py
2477     test_parser_tools.py
2478 ''')
2479
2480
2481 lib_lyx2lyx_extra_files = Split('''
2482     Makefile.am
2483     lyx2lyx_version.py.in
2484 ''')
2485
2486
2487 lib_layouts_files = Split('''
2488     IEEEtran.layout
2489     aa.layout
2490     aapaper.layout
2491     aastex.layout
2492     agu-dtd.layout
2493     agums.layout
2494     amsart-plain.layout
2495     amsart-seq.layout
2496     amsart.layout
2497     amsbook.layout
2498     apa.layout
2499     arab-article.layout
2500     armenian-article.layout
2501     article.layout
2502     beamer.layout
2503     book.layout
2504     broadway.layout
2505     chess.layout
2506     cl2emult.layout
2507     dinbrief.layout
2508     docbook-book.layout
2509     docbook-chapter.layout
2510     docbook-section.layout
2511     docbook.layout
2512     dtk.layout
2513     egs.layout
2514     elsart.layout
2515     entcs.layout
2516     europecv.layout
2517     extarticle.layout
2518     extbook.layout
2519     extletter.layout
2520     extreport.layout
2521     foils.layout
2522     g-brief-de.layout
2523     g-brief-en.layout
2524     g-brief2.layout
2525     heb-article.layout
2526     heb-letter.layout
2527     hollywood.layout
2528     ijmpc.layout
2529     ijmpd.layout
2530     iopart.layout
2531     isprs.layout
2532     jgrga.layout
2533     kluwer.layout
2534     latex8.layout
2535     letter.layout
2536     literate-article.layout
2537     literate-book.layout
2538     literate-report.layout
2539     llncs.layout
2540     ltugboat.layout
2541     manpage.layout
2542     memoir.layout
2543     moderncv.layout
2544     mwart.layout
2545     mwbk.layout
2546     mwrep.layout
2547     paper.layout
2548     powerdot.layout
2549     report.layout
2550     revtex.layout
2551     revtex4.layout
2552     scrartcl.layout
2553     scrbook.layout
2554     scrlettr.layout
2555     scrlttr2.layout
2556     scrreprt.layout
2557     seminar.layout
2558     siamltex.layout
2559     simplecv.layout
2560     slides.layout
2561     spie.layout
2562     svglobal.layout
2563     svjog.layout
2564     svprobth.layout
2565 ''')
2566
2567
2568 lib_layouts_inc_files = Split('''
2569     aapaper.inc
2570     agu_stdclass.inc
2571     agu_stdcounters.inc
2572     agu_stdlists.inc
2573     agu_stdsections.inc
2574     agu_stdtitle.inc
2575     aguplus.inc
2576     amsdefs.inc
2577     amsmaths-plain.inc
2578     amsmaths-seq.inc
2579     amsmaths.inc
2580     db_lyxmacros.inc
2581     db_stdcharstyles.inc
2582     db_stdclass.inc
2583     db_stdcounters.inc
2584     db_stdlayouts.inc
2585     db_stdlists.inc
2586     db_stdsections.inc
2587     db_stdstarsections.inc
2588     db_stdstruct.inc
2589     db_stdtitle.inc
2590     literate-scrap.inc
2591     lyxmacros.inc
2592     numarticle.inc
2593     numreport.inc
2594     numrevtex.inc
2595     scrclass.inc
2596     stdclass.inc
2597     stdcounters.inc
2598     stdfloats.inc
2599     stdinsets.inc
2600     stdlayouts.inc
2601     stdletter.inc
2602     stdlists.inc
2603     stdsections.inc
2604     stdstarsections.inc
2605     stdstruct.inc
2606     stdtitle.inc
2607     svjour.inc
2608     theorems.inc
2609     theorems-ams.inc
2610 ''')
2611
2612
2613 lib_layouts_module_files = Split('''
2614     lib/layouts/endnotes.module
2615     lib/layouts/foottoend.module
2616     lib/layouts/hanging.module
2617     lib/layouts/logicalmkup.module
2618     lib/layouts/theorems-ams.module
2619     lib/layouts/theorems-ams-withinsec.module
2620     lib/layouts/theorems-std.module
2621     lib/layouts/theorems-withinsec.module
2622     lib/layouts/theorems-withinchap.module
2623     lib/layouts/url.module
2624 ''')
2625
2626 lib_scripts_files = Split('''
2627     TeXFiles.py
2628     clean_dvi.py
2629     convertDefault.py
2630     date.py
2631     ext_copy.py
2632     fen2ascii.py
2633     fig2pdftex.py
2634     fig2pstex.py
2635     fig_copy.py
2636     layout2layout.py
2637     legacy_lyxpreview2ppm.py
2638     listerrors
2639     lyxpreview2bitmap.py
2640     lyxpreview_tools.py
2641     tex_copy.py
2642 ''')
2643
2644
2645 lib_bind_files = Split('''
2646     aqua.bind
2647     broadway.bind
2648     cua.bind
2649     cyrkeys.bind
2650     emacs.bind
2651     greekkeys.bind
2652     hollywood.bind
2653     latinkeys.bind
2654     mac.bind
2655     math.bind
2656     menus.bind
2657     sciword.bind
2658     xemacs.bind
2659 ''')
2660
2661
2662 lib_bind_fi_files = Split('''
2663     menus.bind
2664 ''')
2665
2666
2667 lib_bind_sv_files = Split('''
2668     menus.bind
2669 ''')
2670
2671
2672 lib_bind_pt_files = Split('''
2673     menus.bind
2674 ''')
2675
2676
2677 lib_bind_de_files = Split('''
2678     menus.bind
2679 ''')
2680
2681
2682 boost_extra_files = Split('''
2683     LICENSE_1_0.txt
2684     Makefile.am
2685 ''')
2686
2687
2688 boost_libs_extra_files = Split('''
2689     Makefile.am
2690     README
2691 ''')
2692
2693
2694 boost_libs_signals_extra_files = Split('''
2695     Makefile.am
2696     signals.vcproj
2697 ''')
2698
2699
2700 boost_libs_signals_src_files = Split('''
2701     connection.cpp
2702     named_slot_map.cpp
2703     signal_base.cpp
2704     slot.cpp
2705     trackable.cpp
2706 ''')
2707
2708
2709 boost_libs_signals_src_extra_files = Split('''
2710     Makefile.am
2711     pch.h
2712 ''')
2713
2714
2715 boost_libs_regex_extra_files = Split('''
2716     Makefile.am
2717     regex.vcproj
2718 ''')
2719
2720
2721 boost_libs_regex_src_files = Split('''
2722     c_regex_traits.cpp
2723     cpp_regex_traits.cpp
2724     cregex.cpp
2725     fileiter.cpp
2726     instances.cpp
2727     posix_api.cpp
2728     regex.cpp
2729     regex_debug.cpp
2730     regex_raw_buffer.cpp
2731     regex_traits_defaults.cpp
2732     w32_regex_traits.cpp
2733     wide_posix_api.cpp
2734     winstances.cpp
2735 ''')
2736
2737
2738 boost_libs_regex_src_extra_files = Split('''
2739     Makefile.am
2740     pch.h
2741 ''')
2742
2743
2744 boost_libs_filesystem_extra_files = Split('''
2745     Makefile.am
2746     filesystem.vcproj
2747 ''')
2748
2749
2750 boost_libs_filesystem_src_files = Split('''
2751     exception.cpp
2752     operations.cpp
2753     path.cpp
2754     portability.cpp
2755 ''')
2756
2757
2758 boost_libs_filesystem_src_extra_files = Split('''
2759     Makefile.am
2760     pch.h
2761 ''')
2762
2763
2764 boost_libs_iostreams_extra_files = Split('''
2765     Makefile.am
2766 ''')
2767
2768
2769 boost_libs_iostreams_src_files = Split('''
2770     file_descriptor.cpp
2771     mapped_file.cpp
2772     zlib.cpp
2773 ''')
2774
2775
2776 boost_libs_iostreams_src_extra_files = Split('''
2777     Makefile.am
2778     pch.h
2779 ''')
2780
2781
2782 development_Win32_packaging_installer = Split('''
2783     license.rtf
2784     lyx.nsi
2785     settings.nsh
2786     settings.user.nsh
2787 ''')
2788
2789
2790 development_Win32_packaging_installer_components = Split('''
2791     configure.nsh
2792     core.nsh
2793     dicts.nsh
2794     external.nsh
2795     langselect.nsh
2796     reinstall.nsh
2797     uninstall.nsh
2798     user.nsh
2799     viewer.nsh
2800 ''')
2801
2802
2803 development_Win32_packaging_installer_dialogs = Split('''
2804     external.ini
2805     langselect.ini
2806     reinstall.ini
2807     user.ini
2808     viewer.ini
2809 ''')
2810
2811
2812 development_Win32_packaging_installer_graphics = Split('''
2813     header.bmp
2814     wizard.bmp
2815 ''')
2816
2817
2818 development_Win32_packaging_installer_include = Split('''
2819     declarations.nsh
2820     detection.nsh
2821     filelists.nsh
2822     gui.nsh
2823     init.nsh
2824     lang.nsh
2825     windows.nsh
2826 ''')
2827
2828
2829 development_Win32_packaging_installer_lang = Split('''
2830     english.nsh
2831     french.nsh
2832     german.nsh
2833     italian.nsh
2834 ''')
2835