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