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