]> 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     ColorCode.h
47     CompletionList.h
48     Converter.h
49     ConverterCache.h
50     CoordCache.h
51     Counters.h
52     Cursor.h
53     CursorSlice.h
54     CutAndPaste.h
55     DepTable.h
56     Dimension.h
57     DispatchResult.h
58     DocIterator.h
59     EmbeddedFiles.h
60     Encoding.h
61     ErrorList.h
62     Exporter.h
63     FloatList.h
64     Floating.h
65     Font.h
66     FontEnums.h
67     FontInfo.h
68     FontList.h
69     Format.h
70     FuncCode.h
71     FuncRequest.h
72     FuncStatus.h
73     Graph.h
74     ISpell.h
75     InsetIterator.h
76     InsetList.h
77     Intl.h
78     KeyMap.h
79     KeySequence.h
80     LaTeX.h
81     LaTeXFeatures.h
82     Language.h
83     Layout.h
84     LayoutEnums.h
85     LayoutFile.h
86     Length.h
87     Lexer.h
88     LyX.h
89     LyXAction.h
90     LyXFunc.h
91     LyXRC.h
92     LyXVC.h
93     MetricsInfo.h
94     ModuleList.h
95     Mover.h
96     OutputParams.h
97     ParIterator.h
98     Paragraph.h
99     ParagraphList.h
100     ParagraphMetrics.h
101     ParagraphParameters.h
102     PDFOptions.h
103     PrinterParams.h
104     PSpell.h
105     Row.h
106     Section.h
107     Server.h
108     ServerSocket.h
109     Session.h
110     Spacing.h
111     SpellBase.h
112     TexRow.h
113     Text.h
114     TextClass.h
115     TextMetrics.h
116     Thesaurus.h
117     TocBackend.h
118     ToolbarBackend.h
119     Trans.h
120     Undo.h
121     VCBackend.h
122     VSpace.h
123     Variables.h
124     WordLangTuple.h
125     buffer_funcs.h
126     factory.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     FontList.cpp
174     Format.cpp
175     FuncRequest.cpp
176     FuncStatus.cpp
177     Graph.cpp
178     InsetIterator.cpp
179     InsetList.cpp
180     Intl.cpp
181     KeyMap.cpp
182     KeySequence.cpp
183     LaTeX.cpp
184     LaTeXFeatures.cpp
185     Language.cpp
186     Layout.cpp
187     LayoutFile.cpp
188     Length.cpp
189     Lexer.cpp
190     LyX.cpp
191     LyXAction.cpp
192     LyXFunc.cpp
193     LyXRC.cpp
194     LyXVC.cpp
195     MetricsInfo.cpp
196     Mover.cpp
197     OutputParams.cpp
198     PDFOptions.cpp
199     ParIterator.cpp
200     Paragraph.cpp
201     ParagraphMetrics.cpp
202     ParagraphParameters.cpp
203     Row.cpp
204     Server.cpp
205     ServerSocket.cpp
206     Session.cpp
207     Spacing.cpp
208     TexRow.cpp
209     Text.cpp
210     Text2.cpp
211     Text3.cpp
212     TextClass.cpp
213     TextMetrics.cpp
214     TocBackend.cpp
215     ToolbarBackend.cpp
216     Trans.cpp
217     Undo.cpp
218     VCBackend.cpp
219     VSpace.cpp
220     buffer_funcs.cpp
221     factory.cpp
222     lengthcommon.cpp
223     lyxfind.cpp
224     output.cpp
225     output_docbook.cpp
226     output_latex.cpp
227     output_plaintext.cpp
228     paragraph_funcs.cpp
229     rowpainter.cpp
230     sgml.cpp
231     version.cpp
232     WordList.cpp
233 ''')
234
235
236 src_post_files = Split('''
237     Box.cpp
238     Dimension.cpp
239     ModuleList.cpp
240     PrinterParams.cpp
241     SpellBase.cpp
242     Thesaurus.cpp
243     boost.cpp
244 ''')
245
246
247 src_extra_src_files = Split('''
248     ASpell.cpp
249     ISpell.cpp
250     PSpell.cpp
251     Section.cpp
252     Variables.cpp
253     main.cpp
254 ''')
255
256
257 src_extra_files = Split('''
258     Makefile.am
259     pch.h
260 ''')
261
262
263 src_client_header_files = Split('''
264     Messages.h
265     debug.h
266 ''')
267
268
269 src_client_files = Split('''
270     Messages.cpp
271     boost.cpp
272     client.cpp
273     debug.cpp
274     gettext.cpp
275 ''')
276
277
278 src_client_extra_files = Split('''
279     Makefile.am
280     lyxclient.man
281     pch.h
282 ''')
283
284
285 src_support_header_files = Split('''
286     ExceptionMessage.h
287     FileFilterList.h
288     FileMonitor.h
289     FileName.h
290     ForkedCalls.h
291     Messages.h
292     Package.h
293     Path.h
294     RandomAccessList.h
295     SignalSlot.h
296     SignalSlotPrivate.h
297     Systemcall.h
298     Timeout.h
299     Translator.h
300     convert.h
301     copied_ptr.h
302     debug.h
303     docstream.h
304     docstring.h
305     environment.h
306     filetools.h
307     foreach.h
308     gettext.h
309     gzstream.h
310     limited_stack.h
311     lstrings.h
312     lyxalgo.h
313     lyxlib.h
314     lyxtime.h
315     os.h
316     os_win32.h
317     qstring_helpers.h
318     socktools.h
319     textutils.h
320     types.h
321     unicode.h
322     userinfo.h
323 ''')
324
325
326 src_support_files = Split('''
327     FileFilterList.cpp
328     FileMonitor.cpp
329     FileName.cpp
330     ForkedCalls.cpp
331     Messages.cpp
332     Package.cpp
333     Path.cpp
334     SignalSlot.cpp
335     SignalSlotPrivate.cpp
336     Systemcall.cpp
337     Timeout.cpp
338     convert.cpp
339     debug.cpp
340     docstream.cpp
341     docstring.cpp
342     environment.cpp
343     filetools.cpp
344     gzstream.cpp
345     gettext.cpp
346     kill.cpp
347     lstrings.cpp
348     lyxsum.cpp
349     lyxtime.cpp
350     os.cpp
351     socktools.cpp
352     unicode.cpp
353     userinfo.cpp
354 ''')
355
356
357 src_support_extra_header_files = Split('''
358     
359 ''')
360
361
362 src_support_extra_src_files = Split('''
363     atexit.c
364     os_cygwin.cpp
365     os_unix.cpp
366     os_win32.cpp
367     strerror.c
368 ''')
369
370
371 src_support_extra_files = Split('''
372     Makefile.am
373     pch.h
374 ''')
375
376
377 src_support_tests_extra_files = Split('''
378     Makefile.am
379     boost.cpp
380     convert.cpp
381     filetools.cpp
382     lstrings.cpp
383     pch.h
384     test_convert
385     test_filetools
386     test_lstrings
387 ''')
388
389
390 src_support_tests_regfiles_extra_files = Split('''
391     convert
392     filetools
393     lstrings
394 ''')
395
396
397 src_support_minizip_header_files = Split('''
398     crypt.h
399     ioapi.h 
400     iowin32.h
401     unzip.h
402     zip.h
403 ''')
404
405
406 src_support_minizip_files = Split('''
407     ioapi.c
408     iowin32.c
409     zip.c
410     zipunzip.cpp
411     unzip.c
412 ''')
413
414
415 src_graphics_header_files = Split('''
416     GraphicsCache.h
417     GraphicsCacheItem.h
418     GraphicsConverter.h
419     GraphicsImage.h
420     GraphicsLoader.h
421     GraphicsParams.h
422     GraphicsTypes.h
423     PreviewImage.h
424     PreviewLoader.h
425     Previews.h
426 ''')
427
428
429 src_graphics_files = Split('''
430     GraphicsCache.cpp
431     GraphicsCacheItem.cpp
432     GraphicsConverter.cpp
433     GraphicsImage.cpp
434     GraphicsLoader.cpp
435     GraphicsParams.cpp
436     GraphicsTypes.cpp
437     PreviewImage.cpp
438     PreviewLoader.cpp
439     Previews.cpp
440 ''')
441
442
443 src_graphics_extra_files = Split('''
444     Makefile.am
445     pch.h
446 ''')
447
448
449 src_mathed_header_files = Split('''
450     CommandInset.h
451     InsetMath.h
452     InsetMathAMSArray.h
453     InsetMathArray.h
454     InsetMathBig.h
455     InsetMathBoldSymbol.h
456     InsetMathBox.h
457     InsetMathBrace.h
458     InsetMathCases.h
459     InsetMathChar.h
460     InsetMathColor.h
461     InsetMathComment.h
462     InsetMathDecoration.h
463     InsetMathDelim.h
464     InsetMathDiff.h
465     InsetMathDots.h
466     InsetMathEnv.h
467     InsetMathExFunc.h
468     InsetMathExInt.h
469     InsetMathFont.h
470     InsetMathFontOld.h
471     InsetMathFrac.h
472     InsetMathGrid.h
473     InsetMathHull.h
474     InsetMathKern.h
475     InsetMathLefteqn.h
476     InsetMathLim.h
477     InsetMathMatrix.h
478     InsetMathNest.h
479     InsetMathNumber.h
480     InsetMathOverset.h
481     InsetMathPar.h
482     InsetMathPhantom.h
483     InsetMathRef.h
484     InsetMathRoot.h
485     InsetMathScript.h
486     InsetMathSize.h
487     InsetMathSpace.h
488     InsetMathSplit.h
489     InsetMathSqrt.h
490     InsetMathStackrel.h
491     InsetMathString.h
492     InsetMathSubstack.h
493     InsetMathSymbol.h
494     InsetMathTabular.h
495     InsetMathUnderset.h
496     InsetMathUnknown.h
497     InsetMathXArrow.h
498     InsetMathXYMatrix.h
499     MacroTable.h
500     MathAtom.h
501     MathAutoCorrect.h
502     MathCompletionList.h
503     MathData.h
504     MathExtern.h
505     MathFactory.h
506     MathGridInfo.h
507     MathMacro.h
508     MathMacroArgument.h
509     MathMacroTemplate.h
510     MathParser.h
511     MathStream.h
512     MathSupport.h
513     ReplaceData.h
514     TextPainter.h
515 ''')
516
517
518 src_mathed_files = Split('''
519     CommandInset.cpp
520     InsetMath.cpp
521     InsetMathAMSArray.cpp
522     InsetMathArray.cpp
523     InsetMathBig.cpp
524     InsetMathBoldSymbol.cpp
525     InsetMathBox.cpp
526     InsetMathBrace.cpp
527     InsetMathCases.cpp
528     InsetMathChar.cpp
529     InsetMathColor.cpp
530     InsetMathComment.cpp
531     InsetMathDecoration.cpp
532     InsetMathDelim.cpp
533     InsetMathDiff.cpp
534     InsetMathDots.cpp
535     InsetMathEnv.cpp
536     InsetMathExFunc.cpp
537     InsetMathExInt.cpp
538     InsetMathFont.cpp
539     InsetMathFontOld.cpp
540     InsetMathFrac.cpp
541     InsetMathGrid.cpp
542     InsetMathHull.cpp
543     InsetMathKern.cpp
544     InsetMathLefteqn.cpp
545     InsetMathLim.cpp
546     InsetMathMatrix.cpp
547     InsetMathNest.cpp
548     InsetMathNumber.cpp
549     InsetMathOverset.cpp
550     InsetMathPar.cpp
551     InsetMathPhantom.cpp
552     InsetMathRef.cpp
553     InsetMathRoot.cpp
554     InsetMathScript.cpp
555     InsetMathSize.cpp
556     InsetMathSpace.cpp
557     InsetMathSplit.cpp
558     InsetMathSqrt.cpp
559     InsetMathStackrel.cpp
560     InsetMathString.cpp
561     InsetMathSubstack.cpp
562     InsetMathSymbol.cpp
563     InsetMathTabular.cpp
564     InsetMathUnderset.cpp
565     InsetMathUnknown.cpp
566     InsetMathXArrow.cpp
567     InsetMathXYMatrix.cpp
568     MacroTable.cpp
569     MathAtom.cpp
570     MathAutoCorrect.cpp
571     MathData.cpp
572     MathExtern.cpp
573     MathFactory.cpp
574     MathMacro.cpp
575     MathMacroArgument.cpp
576     MathMacroTemplate.cpp
577     MathParser.cpp
578     MathStream.cpp
579     MathSupport.cpp
580     TextPainter.cpp
581 ''')
582
583
584 src_mathed_extra_files = Split('''
585     BUGS
586     InsetFormulaMacro.cpp
587     InsetFormulaMacro.h
588     InsetMathMBox.cpp
589     InsetMathMBox.h
590     InsetMathXYArrow.cpp
591     InsetMathXYArrow.h
592     Makefile.am
593     README
594     pch.h
595     texify
596 ''')
597
598
599 src_tex2lyx_header_files = Split('''
600     Context.h
601     Font.h
602     Parser.h
603     Spacing.h
604     tex2lyx.h
605 ''')
606
607
608 src_tex2lyx_files = Split('''
609     Context.cpp
610     Font.cpp
611     Parser.cpp
612     boost.cpp
613     gettext.cpp
614     math.cpp
615     preamble.cpp
616     table.cpp
617     tex2lyx.cpp
618     text.cpp
619 ''')
620
621
622 src_tex2lyx_copied_header_files = Split('''
623     insets/InsetLayout.h
624 ''')
625
626
627 src_tex2lyx_copied_files = Split('''
628     Color.cpp
629     Counters.cpp
630     FloatList.cpp
631     Floating.cpp
632     Layout.cpp
633     Lexer.cpp
634     TextClass.cpp
635     insets/InsetLayout.cpp
636     lengthcommon.cpp
637 ''')
638
639
640 src_tex2lyx_extra_files = Split('''
641     Makefile.am
642     pch.h
643     test-insets.tex
644     test-structure.tex
645     test.ltx
646     tex2lyx.man
647 ''')
648
649
650 src_frontends_header_files = Split('''
651     Application.h
652     Clipboard.h
653     FontLoader.h
654     FontMetrics.h
655     KeyModifier.h
656     KeySymbol.h
657     LyXView.h
658     Painter.h
659     Selection.h
660     WorkArea.h
661     WorkAreaManager.h
662     alert.h
663     mouse_state.h
664 ''')
665
666
667 src_frontends_files = Split('''
668     WorkAreaManager.cpp
669 ''')
670
671
672 src_frontends_extra_files = Split('''
673     Makefile.am
674     pch.h
675 ''')
676
677
678 src_frontends_controllers_extra_files = Split('''
679     Makefile.am
680     pch.h
681 ''')
682
683
684 src_frontends_controllers_tests_extra_files = Split('''
685     Makefile.am
686     biblio.cpp
687     boost.cpp
688     pch.h
689     test_biblio
690 ''')
691
692
693 src_frontends_controllers_tests_regfiles_extra_files = Split('''
694     biblio
695 ''')
696
697
698 src_frontends_qt4_header_files = Split('''
699         ButtonPolicy.h
700         Dialog.h
701     Action.h
702     BulletsModule.h
703     ButtonController.h
704     ColorCache.h
705     CustomizedWidgets.h
706     DialogView.h
707     DockView.h
708     EmptyTable.h
709     FileDialog.h
710     FloatPlacement.h
711     GuiAbout.h
712     GuiApplication.h
713     GuiBibitem.h
714     GuiBibtex.h
715     GuiBox.h
716     GuiBranches.h
717     GuiBranch.h
718     GuiChanges.h
719     GuiCharacter.h
720     GuiCharacter.h
721     GuiCitation.h
722     GuiClipboard.h
723     GuiCommandBuffer.h
724     GuiCommandEdit.h
725     GuiCompleter.h
726     GuiDelimiter.h
727     GuiDialog.h
728     GuiDocument.h
729     GuiErrorList.h
730     GuiERT.h
731     GuiExternal.h
732     GuiFloat.h
733     GuiFontExample.h
734     GuiFontLoader.h
735     GuiGraphics.h
736     GuiGraphicsUi.h
737     GuiHSpace.h
738     GuiHyperlink.h
739     GuiIdListModel.h
740     GuiImage.h
741     GuiInclude.h
742     GuiKeySymbol.h
743     GuiLabel.h
744     GuiListings.h
745     GuiLog.h
746     GuiMath.h
747     GuiMathMatrix.h
748     GuiNomencl.h
749     GuiNote.h
750     GuiPainter.h
751     GuiParagraph.h
752     GuiPrefs.h
753     GuiPrint.h
754     GuiRef.h
755     GuiSearch.h
756     GuiSelection.h
757     GuiSelectionManager.h
758     GuiSendto.h
759     GuiSetBorder.h
760     GuiShowFile.h
761     GuiSpellchecker.h
762     GuiSymbols.h
763     GuiTabularCreate.h
764     GuiTabular.h
765     GuiTexinfo.h
766     GuiThesaurus.h
767     GuiToc.h
768     GuiToolbar.h
769     GuiToolbars.h
770     GuiView.h
771     GuiViewSource.h
772     GuiVSpace.h
773     GuiWorkArea.h
774     GuiWrap.h
775     IconPalette.h
776     InsertTableWidget.h
777     LaTeXHighlighter.h
778     LengthCombo.h
779     LyXFileDialog.h
780     Menus.h
781     PanelStack.h
782     TocModel.h
783     TocWidget.h
784     Validator.h
785     qt_helpers.h
786 ''')
787
788
789 src_frontends_qt4_files = Split('''
790         ButtonPolicy.cpp
791         Dialog.cpp
792     Action.cpp
793     BulletsModule.cpp
794     ButtonController.cpp
795     ColorCache.cpp
796     CustomizedWidgets.cpp
797     EmptyTable.cpp
798     FileDialog.cpp
799     FloatPlacement.cpp
800     GuiAbout.cpp
801     GuiAlert.cpp
802     GuiApplication.cpp
803     GuiBibitem.cpp
804     GuiBibtex.cpp
805     GuiBox.cpp
806     GuiBranch.cpp
807     GuiBranches.cpp
808     GuiChanges.cpp
809     GuiCharacter.cpp
810     GuiCitation.cpp
811     GuiClipboard.cpp
812     GuiCommandBuffer.cpp
813     GuiCommandEdit.cpp
814     GuiCompleter.cpp
815     GuiDelimiter.cpp
816     GuiDialog.cpp
817     GuiDocument.cpp
818     GuiErrorList.cpp
819     GuiERT.cpp
820     GuiExternal.cpp
821     GuiFloat.cpp
822     GuiFontExample.cpp
823     GuiFontLoader.cpp
824     GuiFontMetrics.cpp
825     GuiGraphics.cpp
826     GuiHSpace.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     HSpaceUi.ui
911     HyperlinkUi.ui
912     IncludeUi.ui
913     LabelUi.ui
914     LaTeXUi.ui
915     LanguageUi.ui
916     ListingsUi.ui
917     LogUi.ui
918     MarginsUi.ui
919     MathMatrixUi.ui
920     MathsUi.ui
921     NomenclUi.ui
922     NoteUi.ui
923     NumberingUi.ui
924     PageLayoutUi.ui
925     ParagraphUi.ui
926     PDFSupportUi.ui
927     PreambleUi.ui
928     PrefColorsUi.ui
929     PrefCompletionUi.ui
930     PrefConvertersUi.ui
931     PrefDateUi.ui
932     PrefDisplayUi.ui
933     PrefEditUi.ui
934     PrefFileformatsUi.ui
935     PrefIdentityUi.ui
936     PrefInputUi.ui
937     PrefLanguageUi.ui
938     PrefLatexUi.ui
939     PrefPathsUi.ui
940     PrefPlaintextUi.ui
941     PrefPrinterUi.ui
942     PrefScreenFontsUi.ui
943     PrefShortcutsUi.ui
944     PrefSpellcheckerUi.ui
945     PrefUi.ui
946     PrefsUi.ui
947     PrintUi.ui
948     RefUi.ui
949     SearchUi.ui
950     SendtoUi.ui
951     ShortcutUi.ui
952     ShowFileUi.ui
953     SpellcheckerUi.ui
954     SymbolsUi.ui
955     TabularCreateUi.ui
956     TabularUi.ui
957     TexinfoUi.ui
958     TextLayoutUi.ui
959     ThesaurusUi.ui
960     TocUi.ui
961     VSpaceUi.ui
962     ViewSourceUi.ui
963     WrapUi.ui
964 ''')
965
966
967 src_frontends_qt4_ui_extra_files = Split('''
968     Makefile.am
969     compile_uic.sh
970 ''')
971
972
973 src_insets_header_files = Split('''
974     ExternalSupport.h
975     ExternalTemplate.h
976     ExternalTransforms.h
977     Inset.h
978     InsetBibitem.h
979     InsetBibtex.h
980     InsetBox.h
981     InsetBranch.h
982     InsetCaption.h
983     InsetCitation.h
984     InsetCode.h
985     InsetCollapsable.h
986     InsetCommand.h
987     InsetCommandParams.h
988     InsetERT.h
989     InsetEnvironment.h
990     InsetExternal.h
991     InsetFlex.h
992     InsetFloat.h
993     InsetFloatList.h
994     InsetFoot.h
995     InsetFootlike.h
996     InsetGraphics.h
997     InsetGraphicsParams.h
998     InsetHyperlink.h
999     InsetInclude.h
1000     InsetIndex.h
1001     InsetInfo.h
1002     InsetLabel.h
1003     InsetLayout.h
1004     InsetLine.h
1005     InsetListings.h
1006     InsetListingsParams.h
1007     InsetMarginal.h
1008     InsetNewline.h
1009     InsetNewpage.h
1010     InsetNomencl.h
1011     InsetNote.h
1012     InsetOptArg.h
1013     InsetQuotes.h
1014     InsetRef.h
1015     InsetSpace.h
1016     InsetSpecialChar.h
1017     InsetTOC.h
1018     InsetTabular.h
1019     InsetText.h
1020     InsetVSpace.h
1021     InsetWrap.h
1022     RenderBase.h
1023     RenderButton.h
1024     RenderGraphic.h
1025     RenderPreview.h
1026 ''')
1027
1028
1029 src_insets_files = Split('''
1030     ExternalSupport.cpp
1031     ExternalTemplate.cpp
1032     ExternalTransforms.cpp
1033     Inset.cpp
1034     InsetBibitem.cpp
1035     InsetBibtex.cpp
1036     InsetBox.cpp
1037     InsetBranch.cpp
1038     InsetCaption.cpp
1039     InsetCitation.cpp
1040     InsetCollapsable.cpp
1041     InsetCommand.cpp
1042     InsetCommandParams.cpp
1043     InsetERT.cpp
1044     InsetEnvironment.cpp
1045     InsetExternal.cpp
1046     InsetFlex.cpp
1047     InsetFloat.cpp
1048     InsetFloatList.cpp
1049     InsetFoot.cpp
1050     InsetFootlike.cpp
1051     InsetGraphics.cpp
1052     InsetGraphicsParams.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     RenderButton.cpp
1078     RenderGraphic.cpp
1079     RenderPreview.cpp
1080 ''')
1081
1082
1083 src_insets_extra_files = Split('''
1084     Makefile.am
1085     pch.h
1086 ''')
1087
1088
1089 intl_header_files = Split('''
1090     eval-plural.h
1091     gettextP.h
1092     gmo.h
1093     hash-string.h
1094     loadinfo.h
1095     localcharset.h
1096     os2compat.h
1097     plural-exp.h
1098     printf-args.h
1099     printf-parse.h
1100     relocatable.h
1101     vasnprintf.h
1102     vasnwprintf.h
1103     wprintf-parse.h
1104     xsize.h
1105 ''')
1106
1107
1108 intl_files = Split('''
1109     bindtextdom.c
1110     dcgettext.c
1111     dcigettext.c
1112     dcngettext.c
1113     dgettext.c
1114     dngettext.c
1115     explodename.c
1116     finddomain.c
1117     gettext.c
1118     intl-compat.c
1119     l10nflist.c
1120     langprefs.c
1121     loadmsgcat.c
1122     localcharset.c
1123     localealias.c
1124     localename.c
1125     log.c
1126     ngettext.c
1127     osdep.c
1128     plural-exp.c
1129     plural.c
1130     printf.c
1131     relocatable.c
1132     textdomain.c
1133 ''')
1134
1135
1136 intl_extra_files = Split('''
1137     VERSION
1138     config.charset
1139     libgnuintl.h.in
1140     locale.alias
1141     os2compat.c
1142     plural.y
1143     printf-args.c
1144     printf-parse.c
1145     ref-add.sin
1146     ref-del.sin
1147     vasnprintf.c
1148 ''')
1149
1150
1151 config_extra_files = Split('''
1152     Makefile.am
1153     common.am
1154     config.guess
1155     config.rpath
1156     config.sub
1157     depcomp
1158     install-sh
1159     libtool.m4
1160     ltmain.sh
1161     lyxinclude.m4
1162     missing
1163     mkinstalldirs
1164     pkg.m4
1165     py-compile
1166     qt4.m4
1167     spell.m4
1168 ''')
1169
1170
1171 sourcedoc_extra_files = Split('''
1172     Doxyfile.in
1173     Makefile.am
1174 ''')
1175
1176
1177 po_extra_files = Split('''
1178     LINGUAS
1179     Makefile.in.in
1180     Makevars
1181     POTFILES.in
1182     README
1183     Rules-quot
1184     bg.po
1185     boldquot.sed
1186     ca.po
1187     cs.po
1188     da.po
1189     de.po
1190     en@boldquot.header
1191     en@quot.header
1192     es.po
1193     eu.po
1194     fi.po
1195     fr.po
1196     gl.po
1197     he.po
1198     hu.po
1199     insert-header.sin
1200     it.po
1201     ja.po
1202     ko.po
1203     lyx_pot.py
1204     nb.po
1205     nl.po
1206     nn.po
1207     pl.po
1208     pocheck.pl
1209     postats.sh
1210     pt.po
1211     quot.sed
1212     remove-potcdate.sin
1213     ro.po
1214     ru.po
1215     sk.po
1216     sl.po
1217     sv.po
1218     tr.po
1219     wa.po
1220     zh_CN.po
1221     zh_TW.po
1222 ''')
1223
1224
1225 lib_files = Split('''
1226     CREDITS
1227     chkconfig.ltx
1228     configure.py
1229     encodings
1230     external_templates
1231     languages
1232     symbols
1233     syntax.default
1234     unicodesymbols
1235 ''')
1236
1237
1238 lib_extra_files = Split('''
1239     Makefile.am
1240     autocorrect
1241     build-listerrors
1242     generate_contributions.py
1243 ''')
1244
1245
1246 lib_kbd_files = Split('''
1247     american-2.kmap
1248     american.kmap
1249     arabic.kmap
1250     bg-bds-1251.kmap
1251     brazil.kmap
1252     brazil2.kmap
1253     czech-prg.kmap
1254     czech.kmap
1255     espanol.kmap
1256     european.kmap
1257     farsi.kmap
1258     francais.kmap
1259     french.kmap
1260     german-2.kmap
1261     german-3.kmap
1262     german.kmap
1263     greek.kmap
1264     hebrew.kmap
1265     koi8-r.kmap
1266     koi8-u.kmap
1267     latvian.kmap
1268     magyar-2.kmap
1269     magyar-3.kmap
1270     magyar.kmap
1271     null.kmap
1272     polish.kmap
1273     polski.kmap
1274     portuges.kmap
1275     romanian.kmap
1276     serbian.kmap
1277     serbocroatian.kmap
1278     sf.kmap
1279     sg.kmap
1280     slovak.kmap
1281     slovene.kmap
1282     thai-kedmanee.kmap
1283     transilvanian.kmap
1284     turkish-f.kmap
1285     turkish.kmap
1286 ''')
1287
1288
1289 lib_templates_files = Split('''
1290     IEEEtran.lyx
1291     README.new_templates
1292     aa.lyx
1293     aastex.lyx
1294     agu_article.lyx
1295     apa.lyx
1296     beamer-conference-ornate-20min.lyx
1297     de_beamer-conference-ornate-20min.lyx
1298     dinbrief.lyx
1299     docbook_article.lyx
1300     elsart.lyx
1301     fr_beamer-conference-ornate-20min.lyx
1302     g-brief-de.lyx
1303     g-brief-en.lyx
1304     g-brief2.lyx
1305     hollywood.lyx
1306     ijmpc.lyx
1307     ijmpd.lyx
1308     iop-article.lyx
1309     kluwer.lyx
1310     koma-letter2.lyx
1311     latex8.lyx
1312     letter.lyx
1313     revtex.lyx
1314     revtex4.lyx
1315     slides.lyx
1316 ''')
1317
1318
1319 lib_ui_files = Split('''
1320     classic.ui
1321     default.ui
1322     stdcontext.inc
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