]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
Scons for the last commit.
[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     gettext.cpp
274 ''')
275
276
277 src_client_extra_files = Split('''
278     Makefile.am
279     lyxclient.man
280     pch.h
281 ''')
282
283
284 src_support_header_files = Split('''
285     ExceptionMessage.h
286     FileFilterList.h
287     FileMonitor.h
288     FileName.h
289     ForkedCalls.h
290     Messages.h
291     Package.h
292     Path.h
293     RandomAccessList.h
294     SignalSlot.h
295     SignalSlotPrivate.h
296     Systemcall.h
297     Timeout.h
298     Translator.h
299     assert.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     assert.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     InsetMathBoldSymbol.h
457     InsetMathBox.h
458     InsetMathBrace.h
459     InsetMathCases.h
460     InsetMathChar.h
461     InsetMathColor.h
462     InsetMathComment.h
463     InsetMathDecoration.h
464     InsetMathDelim.h
465     InsetMathDiff.h
466     InsetMathDots.h
467     InsetMathEnv.h
468     InsetMathExFunc.h
469     InsetMathExInt.h
470     InsetMathFont.h
471     InsetMathFontOld.h
472     InsetMathFrac.h
473     InsetMathGrid.h
474     InsetMathHull.h
475     InsetMathKern.h
476     InsetMathLefteqn.h
477     InsetMathLim.h
478     InsetMathMatrix.h
479     InsetMathNest.h
480     InsetMathNumber.h
481     InsetMathOverset.h
482     InsetMathPar.h
483     InsetMathPhantom.h
484     InsetMathRef.h
485     InsetMathRoot.h
486     InsetMathScript.h
487     InsetMathSize.h
488     InsetMathSpace.h
489     InsetMathSplit.h
490     InsetMathSqrt.h
491     InsetMathStackrel.h
492     InsetMathString.h
493     InsetMathSubstack.h
494     InsetMathSymbol.h
495     InsetMathTabular.h
496     InsetMathUnderset.h
497     InsetMathUnknown.h
498     InsetMathXArrow.h
499     InsetMathXYMatrix.h
500     MacroTable.h
501     MathAtom.h
502     MathAutoCorrect.h
503     MathCompletionList.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     InsetMathBoldSymbol.cpp
526     InsetMathBox.cpp
527     InsetMathBrace.cpp
528     InsetMathCases.cpp
529     InsetMathChar.cpp
530     InsetMathColor.cpp
531     InsetMathComment.cpp
532     InsetMathDecoration.cpp
533     InsetMathDelim.cpp
534     InsetMathDiff.cpp
535     InsetMathDots.cpp
536     InsetMathEnv.cpp
537     InsetMathExFunc.cpp
538     InsetMathExInt.cpp
539     InsetMathFont.cpp
540     InsetMathFontOld.cpp
541     InsetMathFrac.cpp
542     InsetMathGrid.cpp
543     InsetMathHull.cpp
544     InsetMathKern.cpp
545     InsetMathLefteqn.cpp
546     InsetMathLim.cpp
547     InsetMathMatrix.cpp
548     InsetMathNest.cpp
549     InsetMathNumber.cpp
550     InsetMathOverset.cpp
551     InsetMathPar.cpp
552     InsetMathPhantom.cpp
553     InsetMathRef.cpp
554     InsetMathRoot.cpp
555     InsetMathScript.cpp
556     InsetMathSize.cpp
557     InsetMathSpace.cpp
558     InsetMathSplit.cpp
559     InsetMathSqrt.cpp
560     InsetMathStackrel.cpp
561     InsetMathString.cpp
562     InsetMathSubstack.cpp
563     InsetMathSymbol.cpp
564     InsetMathTabular.cpp
565     InsetMathUnderset.cpp
566     InsetMathUnknown.cpp
567     InsetMathXArrow.cpp
568     InsetMathXYMatrix.cpp
569     MacroTable.cpp
570     MathAtom.cpp
571     MathAutoCorrect.cpp
572     MathData.cpp
573     MathExtern.cpp
574     MathFactory.cpp
575     MathMacro.cpp
576     MathMacroArgument.cpp
577     MathMacroTemplate.cpp
578     MathParser.cpp
579     MathStream.cpp
580     MathSupport.cpp
581     TextPainter.cpp
582 ''')
583
584
585 src_mathed_extra_files = Split('''
586     BUGS
587     InsetFormulaMacro.cpp
588     InsetFormulaMacro.h
589     InsetMathMBox.cpp
590     InsetMathMBox.h
591     InsetMathXYArrow.cpp
592     InsetMathXYArrow.h
593     Makefile.am
594     README
595     pch.h
596     texify
597 ''')
598
599
600 src_tex2lyx_header_files = Split('''
601     Context.h
602     Font.h
603     Parser.h
604     Spacing.h
605     tex2lyx.h
606 ''')
607
608
609 src_tex2lyx_files = Split('''
610     Context.cpp
611     Font.cpp
612     Parser.cpp
613     boost.cpp
614     gettext.cpp
615     math.cpp
616     preamble.cpp
617     table.cpp
618     tex2lyx.cpp
619     text.cpp
620 ''')
621
622
623 src_tex2lyx_copied_header_files = Split('''
624     insets/InsetLayout.h
625 ''')
626
627
628 src_tex2lyx_copied_files = Split('''
629     Color.cpp
630     Counters.cpp
631     FloatList.cpp
632     Floating.cpp
633     Layout.cpp
634     Lexer.cpp
635     TextClass.cpp
636     insets/InsetLayout.cpp
637     lengthcommon.cpp
638 ''')
639
640
641 src_tex2lyx_extra_files = Split('''
642     Makefile.am
643     pch.h
644     test-insets.tex
645     test-structure.tex
646     test.ltx
647     tex2lyx.man
648 ''')
649
650
651 src_frontends_header_files = Split('''
652     Application.h
653     Clipboard.h
654     FontLoader.h
655     FontMetrics.h
656     KeyModifier.h
657     KeySymbol.h
658     LyXView.h
659     Painter.h
660     Selection.h
661     WorkArea.h
662     WorkAreaManager.h
663     alert.h
664     mouse_state.h
665 ''')
666
667
668 src_frontends_files = Split('''
669     WorkAreaManager.cpp
670 ''')
671
672
673 src_frontends_extra_files = Split('''
674     Makefile.am
675     pch.h
676 ''')
677
678
679 src_frontends_controllers_extra_files = Split('''
680     Makefile.am
681     pch.h
682 ''')
683
684
685 src_frontends_controllers_tests_extra_files = Split('''
686     Makefile.am
687     biblio.cpp
688     boost.cpp
689     pch.h
690     test_biblio
691 ''')
692
693
694 src_frontends_controllers_tests_regfiles_extra_files = Split('''
695     biblio
696 ''')
697
698
699 src_frontends_qt4_header_files = Split('''
700         ButtonPolicy.h
701         Dialog.h
702     Action.h
703     BulletsModule.h
704     ButtonController.h
705     ColorCache.h
706     CustomizedWidgets.h
707     DialogView.h
708     DockView.h
709     EmptyTable.h
710     FileDialog.h
711     FloatPlacement.h
712     GuiAbout.h
713     GuiApplication.h
714     GuiBibitem.h
715     GuiBibtex.h
716     GuiBox.h
717     GuiBranches.h
718     GuiBranch.h
719     GuiChanges.h
720     GuiCharacter.h
721     GuiCharacter.h
722     GuiCitation.h
723     GuiClipboard.h
724     GuiCommandBuffer.h
725     GuiCommandEdit.h
726     GuiCompleter.h
727     GuiDelimiter.h
728     GuiDialog.h
729     GuiDocument.h
730     GuiErrorList.h
731     GuiERT.h
732     GuiExternal.h
733     GuiFloat.h
734     GuiFontExample.h
735     GuiFontLoader.h
736     GuiGraphics.h
737     GuiGraphicsUi.h
738     GuiHSpace.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     GuiHSpace.cpp
828     GuiHyperlink.cpp
829     GuiIdListModel.cpp 
830     GuiImage.cpp
831     GuiInclude.cpp
832     GuiKeySymbol.cpp
833     GuiLabel.cpp
834     GuiListings.cpp
835     GuiLog.cpp
836     GuiMath.cpp
837     GuiMathMatrix.cpp
838     GuiNomencl.cpp
839     GuiNote.cpp
840     GuiPainter.cpp
841     GuiParagraph.cpp
842     GuiPrefs.cpp
843     GuiPrint.cpp
844     GuiRef.cpp
845     GuiSearch.cpp
846     GuiSelection.cpp
847     GuiSelectionManager.cpp
848     GuiSendto.cpp
849     GuiSetBorder.cpp
850     GuiShowFile.cpp
851     GuiSpellchecker.cpp
852     GuiSymbols.cpp
853     GuiTabular.cpp
854     GuiTabularCreate.cpp
855     GuiTexinfo.cpp
856     GuiThesaurus.cpp
857     GuiToc.cpp
858     GuiToolbar.cpp
859     GuiToolbars.cpp
860     GuiView.cpp
861     GuiViewSource.cpp
862     GuiVSpace.cpp
863     GuiWorkArea.cpp
864     GuiWrap.cpp
865     IconPalette.cpp
866     InsertTableWidget.cpp
867     LengthCombo.cpp
868     LaTeXHighlighter.cpp
869     LyXFileDialog.cpp
870     Menus.cpp
871     PanelStack.cpp
872     TocModel.cpp
873     TocWidget.cpp
874     Validator.cpp
875     qt_helpers.cpp
876 ''')
877
878
879 src_frontends_qt4_extra_files = Split('''
880     GuiFontMetrics.h
881     Makefile.am
882     README
883     pch.h
884 ''')
885
886
887 src_frontends_qt4_ui_files = Split('''
888     AboutUi.ui
889     AskForTextUi.ui
890     BibitemUi.ui
891     BiblioUi.ui
892     BibtexAddUi.ui
893     BibtexUi.ui
894     BoxUi.ui
895     BranchUi.ui
896     BranchesUi.ui
897     BulletsUi.ui
898     ChangesUi.ui
899     CharacterUi.ui
900     CitationUi.ui
901     DelimiterUi.ui
902     DocumentUi.ui
903     ERTUi.ui
904     ErrorListUi.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     Vvdash.png
1500     acute.png
1501     aleph.png
1502     alpha.png
1503     amalg.png
1504     angle.png
1505     approx.png
1506     approxeq.png
1507     asymp.png
1508     backepsilon.png
1509     backprime.png
1510     backsim.png
1511     backsimeq.png
1512     backslash.png
1513     bar.png
1514     bars.png
1515     barwedge.png
1516     because.png
1517     beta.png
1518     beth.png
1519     between.png
1520     bigcap.png
1521     bigcirc.png
1522     bigcup.png
1523     bigodot.png
1524     bigoplus.png
1525     bigotimes.png
1526     bigsqcup.png
1527     bigstar.png
1528     bigtriangledown.png
1529     bigtriangleup.png
1530     biguplus.png
1531     bigvee.png
1532     bigwedge.png
1533     blacklozenge.png
1534     blacksquare.png
1535     blacktriangle.png
1536     blacktriangledown.png
1537     blacktriangleleft.png
1538     blacktriangleright.png
1539     bot.png
1540     bowtie.png
1541     boxdot.png
1542     boxminus.png
1543     boxplus.png
1544     boxtimes.png
1545     breve.png
1546     bullet.png
1547     bumpeq.png
1548     bumpeq2.png
1549     cap.png
1550     cap2.png
1551     cases.png
1552     cdot.png
1553     cdots.png
1554     centerdot.png
1555     check.png
1556     chi.png
1557     circ.png
1558     circeq.png
1559     circlearrowleft.png
1560     circlearrowright.png
1561     circledS.png
1562     circledast.png
1563     circledcirc.png
1564     circleddash.png
1565     clubsuit.png
1566     complement.png
1567     cong.png
1568     coprod.png
1569     cup.png
1570     cup2.png
1571     curlyeqprec.png
1572     curlyeqsucc.png
1573     curlyvee.png
1574     curlywedge.png
1575     curvearrowleft.png
1576     curvearrowright.png
1577     dagger.png
1578     daleth.png
1579     dashleftarrow.png
1580     dashrightarrow.png
1581     dashv.png
1582     ddagger.png
1583     ddot.png
1584     ddots.png
1585     delim.png
1586     delta.png
1587     delta2.png
1588     diagdown.png
1589     diagup.png
1590     diamond.png
1591     diamondsuit.png
1592     digamma.png
1593     div.png
1594     divideontimes.png
1595     dot.png
1596     doteq.png
1597     doteqdot.png
1598     dotplus.png
1599     dotsint.png
1600     dotsintop.png
1601     doublebarwedge.png
1602     downarrow.png
1603     downarrow2.png
1604     downdownarrows.png
1605     downharpoonleft.png
1606     downharpoonright.png
1607     ell.png
1608     empty.png
1609     emptyset.png
1610     epsilon.png
1611     eqcirc.png
1612     eqslantgtr.png
1613     eqslantless.png
1614     equation.png
1615     equiv.png
1616     eta.png
1617     eth.png
1618     exists.png
1619     fallingdotseq.png
1620     flat.png
1621     font.png
1622     forall.png
1623     frac-square.png
1624     frac.png
1625     frown.png
1626     functions.png
1627     gamma.png
1628     gamma2.png
1629     geq.png
1630     geqq.png
1631     geqslant.png
1632     gg.png
1633     ggg.png
1634     gimel.png
1635     gnapprox.png
1636     gneq.png
1637     gneqq.png
1638     gnsim.png
1639     grave.png
1640     gtrapprox.png
1641     gtrdot.png
1642     gtreqless.png
1643     gtreqqless.png
1644     gtrless.png
1645     gtrsim.png
1646     gvertneqq.png
1647     hat.png
1648     hbar.png
1649     heartsuit.png
1650     hookleftarrow.png
1651     hookrightarrow.png
1652     hphantom.png
1653     hslash.png
1654     iiiint.png
1655     iiiintop.png
1656     iiint.png
1657     iiintop.png
1658     iint.png
1659     iintop.png
1660     imath.png
1661     in.png
1662     infty.png
1663     int.png
1664     intercal.png
1665     intop.png
1666     iota.png
1667     jmath.png
1668     kappa.png
1669     lambda.png
1670     lambda2.png
1671     langle.png
1672     lbrace.png
1673     lbrace_rbrace.png
1674     lbracket.png
1675     lbracket_rbracket.png
1676     lceil.png
1677     lceil_rceil.png
1678     ldots.png
1679     leftarrow.png
1680     leftarrow2.png
1681     leftarrowtail.png
1682     leftharpoondown.png
1683     leftharpoonup.png
1684     leftleftarrows.png
1685     leftrightarrow.png
1686     leftrightarrow2.png
1687     leftrightarrows.png
1688     leftrightharpoons.png
1689     leftrightsquigarrow.png
1690     leftthreetimes.png
1691     leq.png
1692     leqq.png
1693     leqslant.png
1694     lessapprox.png
1695     lessdot.png
1696     lesseqgtr.png
1697     lesseqqgtr.png
1698     lessgtr.png
1699     lesssim.png
1700     lfloor.png
1701     lfloor_rfloor.png
1702     ll.png
1703     llcorner.png
1704     lll.png
1705     lnapprox.png
1706     lneq.png
1707     lneqq.png
1708     lnsim.png
1709     longleftarrow.png
1710     longleftarrow2.png
1711     longleftrightarrow.png
1712     longleftrightarrow2.png
1713     longmapsto.png
1714     longrightarrow.png
1715     longrightarrow2.png
1716     looparrowleft.png
1717     looparrowright.png
1718     lozenge.png
1719     lparen.png
1720     lparen_rparen.png
1721     lrcorner.png
1722     ltimes.png
1723     lvertneqq.png
1724     mapsto.png
1725     mathbb_C.png
1726     mathbb_H.png
1727     mathbb_N.png
1728     mathbb_Q.png
1729     mathbb_R.png
1730     mathbb_Z.png
1731     mathcal_F.png
1732     mathcal_H.png
1733     mathcal_L.png
1734     mathcal_O.png
1735     mathcircumflex.png
1736     mathrm_T.png
1737     matrix.png
1738     measuredangle.png
1739     mho.png
1740     mid.png
1741     models.png
1742     mp.png
1743     mu.png
1744     multimap.png
1745     nabla.png
1746     natural.png
1747     ncong.png
1748     nearrow.png
1749     neg.png
1750     neq.png
1751     nexists.png
1752     ngeq.png
1753     ngeqq.png
1754     ngeqslant.png
1755     ngtr.png
1756     ni.png
1757     nleftarrow.png
1758     nleftarrow2.png
1759     nleftrightarrow.png
1760     nleftrightarrow2.png
1761     nleq.png
1762     nleqq.png
1763     nleqslant.png
1764     nless.png
1765     nmid.png
1766     notin.png
1767     nparallel.png
1768     nprec.png
1769     npreceq.png
1770     nrightarrow.png
1771     nrightarrow2.png
1772     nshortmid.png
1773     nshortparallel.png
1774     nsim.png
1775     nsubseteq.png
1776     nsucc.png
1777     nsucceq.png
1778     nsupseteq.png
1779     nsupseteqq.png
1780     ntriangleleft.png
1781     ntrianglelefteq.png
1782     ntriangleright.png
1783     ntrianglerighteq.png
1784     nu.png
1785     nvdash.png
1786     nvdash2.png
1787     nvdash3.png
1788     nwarrow.png
1789     odot.png
1790     oiint.png
1791     oiintop.png
1792     oint.png
1793     ointclockwise.png
1794     ointclockwiseop.png
1795     ointctrclockwise.png
1796     ointctrclockwiseop.png
1797     ointop.png
1798     omega.png
1799     omega2.png
1800     ominus.png
1801     oplus.png
1802     oslash.png
1803     otimes.png
1804     overbrace.png
1805     overleftarrow.png
1806     overleftrightarrow.png
1807     overline.png
1808     overrightarrow.png
1809     overset.png
1810     parallel.png
1811     partial.png
1812     perp.png
1813     phantom.png
1814     phi.png
1815     phi2.png
1816     pi.png
1817     pi2.png
1818     pitchfork.png
1819     pm.png
1820     prec.png
1821     precapprox.png
1822     preccurlyeq.png
1823     preceq.png
1824     precnapprox.png
1825     precnsim.png
1826     precsim.png
1827     prime.png
1828     prod.png
1829     propto.png
1830     psi.png
1831     psi2.png
1832     rangle.png
1833     rbrace.png
1834     rbracket.png
1835     rceil.png
1836     rfloor.png
1837     rho.png
1838     rightarrow.png
1839     rightarrow2.png
1840     rightarrowtail.png
1841     rightharpoondown.png
1842     rightharpoonup.png
1843     rightleftarrows.png
1844     rightleftharpoons.png
1845     rightrightarrows.png
1846     rightsquigarrow.png
1847     rightthreetimes.png
1848     risingdotseq.png
1849     root.png
1850     rparen.png
1851     rtimes.png
1852     searrow.png
1853     setminus.png
1854     sharp.png
1855     shortmid.png
1856     shortparallel.png
1857     sigma.png
1858     sigma2.png
1859     sim.png
1860     simeq.png
1861     slash.png
1862     smallfrown.png
1863     smallsetminus.png
1864     smallsmile.png
1865     smile.png
1866     space.png
1867     spadesuit.png
1868     sphericalangle.png
1869     sqcap.png
1870     sqcup.png
1871     sqiint.png
1872     sqiintop.png
1873     sqint.png
1874     sqintop.png
1875     sqrt-square.png
1876     sqrt.png
1877     sqsubset.png
1878     sqsubseteq.png
1879     sqsupset.png
1880     sqsupseteq.png
1881     square.png
1882     star.png
1883     style.png
1884     style.png
1885     sub.png
1886     subset.png
1887     subset2.png
1888     subseteq.png
1889     subseteqq.png
1890     subsetneq.png
1891     subsetneqq.png
1892     succ.png
1893     succapprox.png
1894     succcurlyeq.png
1895     succeq.png
1896     succnapprox.png
1897     succnsim.png
1898     succsim.png
1899     sum.png
1900     super.png
1901     supset.png
1902     supset2.png
1903     supseteq.png
1904     supseteqq.png
1905     supsetneq.png
1906     supsetneqq.png
1907     surd.png
1908     swarrow.png
1909     tau.png
1910     textrm_AA.png
1911     textrm_O.png
1912     therefore.png
1913     theta.png
1914     theta2.png
1915     thickapprox.png
1916     thicksim.png
1917     tilde.png
1918     times.png
1919     top.png
1920     triangle.png
1921     triangledown.png
1922     triangleleft.png
1923     trianglelefteq.png
1924     triangleq.png
1925     triangleright.png
1926     trianglerighteq.png
1927     twoheadleftarrow.png
1928     twoheadrightarrow.png
1929     ulcorner.png
1930     underbrace.png
1931     underleftarrow.png
1932     underleftrightarrow.png
1933     underline.png
1934     underrightarrow.png
1935     underscore.png
1936     underset.png
1937     uparrow.png
1938     uparrow2.png
1939     updownarrow.png
1940     updownarrow2.png
1941     upharpoonleft.png
1942     upharpoonright.png
1943     uplus.png
1944     upsilon.png
1945     upsilon2.png
1946     upuparrows.png
1947     urcorner.png
1948     varepsilon.png
1949     varkappa.png
1950     varnothing.png
1951     varphi.png
1952     varpi.png
1953     varpropto.png
1954     varrho.png
1955     varsigma.png
1956     varsubsetneq.png
1957     varsubsetneqq.png
1958     varsupsetneq.png
1959     varsupsetneqq.png
1960     vartheta.png
1961     vartriangle.png
1962     vartriangleleft.png
1963     vartriangleright.png
1964     vdash.png
1965     vdash2.png
1966     vdash3.png
1967     vdots.png
1968     vec.png
1969     vee.png
1970     veebar.png
1971     vert.png
1972     vert2.png
1973     vphantom.png
1974     wedge.png
1975     widehat.png
1976     widetilde.png
1977     wp.png
1978     wr.png
1979     xi.png
1980     xi2.png
1981     zeta.png
1982 ''')
1983
1984
1985 lib_images_math_extra_files = Split('''
1986     ams_arrows.png
1987     ams_misc.png
1988     ams_nrel.png
1989     ams_ops.png
1990     ams_rel.png
1991     arrows.png
1992     bop.png
1993     brel.png
1994     deco.png
1995     deco.png
1996     delim.png
1997     delim0.png
1998     delim1.png
1999     dots.png
2000     font.png
2001     functions.png
2002     greek.png
2003     misc.png
2004     varsz.png
2005 ''')
2006
2007
2008 lib_images_commands_files = Split('''
2009 ''')
2010
2011
2012 lib_images_attic_extra_files = Split('''
2013     dialog-show_mathpanel.png
2014 ''')
2015
2016
2017 lib_tex_files = Split('''
2018     broadway.cls
2019     hollywood.cls
2020     lyxchess.sty
2021     lyxskak.sty
2022     revtex.cls
2023 ''')
2024
2025
2026 lib_doc_files = Split('''
2027     Customization.lyx
2028     DocStyle.lyx
2029     DummyDocument1.lyx
2030     DummyDocument2.lyx
2031     DummyTextDocument.txt
2032     EmbeddedObjects.lyx
2033     Extended.lyx
2034     FAQ.lyx
2035     Formula-numbering.lyx
2036     Intro.lyx
2037     LaTeXConfig.lyx
2038     Math.lyx
2039     Reference.lyx
2040     Shortcuts.lyx
2041     Tutorial.lyx
2042     UserGuide.lyx
2043 ''')
2044
2045
2046 lib_doc_biblio_files = Split('''
2047     alphadin.bst
2048     LyXDocs.bib
2049 ''')
2050
2051
2052 lib_doc_clipart_files = Split('''
2053     Abstract.pdf
2054     BoxInsetDefaultQt4.png
2055     ChangesToolbar.png
2056     ChildDocumentQt4.png
2057     CommentNoteImageQt4.png
2058     ERT.png
2059     ExternalMaterialQt4.png
2060     ExtraToolbar.png
2061     FramedNoteImageQt4.png
2062     GreyedOutNoteImageQt4.png
2063     LaTeX.png
2064     LyXNoteImageQt4.png
2065     ShadedNoteImageQt4.png
2066     SpaceMarker.png
2067     StandardToolbar.png
2068     ToolbarEnvBox.png
2069     endnotes.pdf
2070     escher-lsd.eps
2071     floatQt4.png
2072     footnoteQt4.png
2073     labelQt4.png
2074     macrobox.png
2075     macrouse.png
2076     mbox.png
2077     mobius.eps
2078     platypus.eps
2079     referenceQt4.png
2080     ViewToolbar.png
2081     with_fntright.pdf
2082     without_fntright.pdf
2083 ''')
2084
2085
2086 lib_doc_extra_files = Split('''
2087     Makefile.am
2088     Makefile.depend
2089     README.Documentation
2090     depend.py
2091     doc_toc.py
2092 ''')
2093
2094
2095 lib_doc_cs_files = Split('''
2096     Tutorial.lyx
2097 ''')
2098
2099
2100 lib_doc_de_files = Split('''
2101     Customization.lyx
2102     DummyDocument1.lyx
2103     DummyDocument2.lyx
2104     DummyTextDocument.txt
2105     EmbeddedObjects.lyx
2106     Extended.lyx
2107     FAQ.lyx
2108     Formelnummerierung.lyx
2109     Intro.lyx
2110     Math.lyx
2111     Tutorial.lyx
2112     UserGuide.lyx
2113 ''')
2114
2115
2116 lib_doc_de_clipart_files = Split('''
2117     ERT.png
2118     ExternesMaterialQt4.png
2119     FussnoteQt4.png
2120     GerahmteNotizQt4.png
2121     GleitobjektQt4.png
2122     GrauschriftNotizQt4.png
2123     KommentarQt4.png
2124     LyXNotizQt4.png
2125     Marke.png
2126     Querverweis.png
2127     SchattierteNotizQt4.png
2128     StandardBoxQt4.png
2129     UnterdokumentQt4.png
2130 ''')
2131
2132
2133 lib_doc_da_files = Split('''
2134     Intro.lyx
2135 ''')
2136
2137
2138 lib_doc_es_files = Split('''
2139     DocumentoPostizo1.lyx
2140     DocumentoPostizo2.lyx
2141     DocumentoTextoPostizo.txt
2142     EmbeddedObjects.lyx
2143     Extended.lyx
2144     FAQ.lyx
2145     Formula-numbering.lyx
2146     Intro.lyx
2147     Math.lyx
2148     Tutorial.lyx
2149     UserGuide.lyx
2150 ''')
2151
2152
2153 lib_doc_es_clipart_files = Split('''
2154     ComentNotaImagenQt4.png
2155     CuadroMinipagQt4.png
2156     DocumentoHijoQt4.png
2157     GrisNotaImagenQt4.png
2158     MaterialExternoQt4.png
2159     NotaEnmarcadaImg.png
2160     NotaLyXImagenQt4.png
2161     NotaSombreadaImg.png
2162     Resumen.pdf
2163     es_ERT.png
2164     etiquetaQt4.png
2165     flotanteQt4.png
2166     notapieQt4.png
2167     referenciaQt4.png
2168 ''')
2169
2170
2171 lib_doc_eu_files = Split('''
2172     Customization.lyx
2173     Extended.lyx
2174     FAQ.lyx
2175     Intro.lyx
2176     Tutorial.lyx
2177     UserGuide.lyx
2178 ''')
2179
2180
2181 lib_doc_fr_files = Split('''
2182     Customization.lyx
2183     DocumentBidon1.lyx
2184     DocumentBidon2.lyx
2185     DocumentTexteBidon.txt
2186     EmbeddedObjects.lyx
2187     Extended.lyx
2188     FAQ.lyx
2189     Formula-numbering.lyx
2190     Intro.lyx
2191     Math.lyx
2192     Tutorial.lyx
2193     UserGuide.lyx
2194 ''')
2195
2196
2197 lib_doc_fr_clipart_files = Split('''
2198     BoxInsetDefaultQt4.png
2199     ChildDocumentQt4.png
2200     CommentNoteImageQt4.png
2201     FramedNoteImageQt4.png
2202     GreyedOutNoteImageQt4.png
2203     LyXNoteImageQt4.png
2204     ShadedNoteImageQt4.png
2205     floatQt4.png
2206     footnoteQt4.png
2207     labelQt4.png
2208 ''')
2209
2210
2211 lib_doc_gl_extra_files = Split('''
2212     Intro.lyx
2213     Tutorial.lyx
2214 ''')
2215
2216
2217 lib_doc_he_files = Split('''
2218     Intro.lyx
2219     Tutorial.lyx
2220 ''')
2221
2222
2223 lib_doc_hu_files = Split('''
2224     Intro.lyx
2225     Tutorial.lyx
2226 ''')
2227
2228
2229 lib_doc_it_files = Split('''
2230     Customization.lyx
2231     Intro.lyx
2232     Tutorial.lyx
2233     UserGuide.lyx
2234 ''')
2235
2236
2237 lib_doc_nb_files = Split('''
2238     Intro.lyx
2239 ''')
2240
2241
2242 lib_doc_nl_files = Split('''
2243     Intro.lyx
2244     Tutorial.lyx
2245 ''')
2246
2247
2248 lib_doc_pl_files = Split('''
2249     Extended.lyx
2250     Intro.lyx
2251     Tutorial.lyx
2252 ''')
2253
2254
2255 lib_doc_pt_files = Split('''
2256     Intro.lyx
2257     Tutorial.lyx
2258 ''')
2259
2260
2261 lib_doc_ro_files = Split('''
2262     Intro.lyx
2263 ''')
2264
2265
2266 lib_doc_ru_files = Split('''
2267     FAQ.lyx
2268     Intro.lyx
2269     Tutorial.lyx
2270 ''')
2271
2272
2273 lib_doc_sl_files = Split('''
2274     Intro.lyx
2275     Tutorial.lyx
2276 ''')
2277
2278
2279 lib_doc_sk_files = Split('''
2280     Tutorial.lyx
2281     UserGuide.lyx
2282 ''')
2283
2284
2285 lib_doc_sv_files = Split('''
2286     Intro.lyx
2287     Tutorial.lyx
2288 ''')
2289
2290
2291 lib_examples_files = Split('''
2292     Braille.lyx
2293     CV-image.eps
2294     CV-image.png
2295     Foils.lyx
2296     ItemizeBullets.lyx
2297     Literate.lyx
2298     Minipage.lyx
2299     aa_sample.lyx
2300     aas_sample.lyx
2301     addressExample.adr
2302     amsart-test.lyx
2303     amsbook-test.lyx
2304     armenian-article.lyx
2305     beamer-g4-mask.jpg
2306     beamer-g4.jpg
2307     beamer-icsi-logo.pdf
2308     beamer-knight1-mask.png
2309     beamer-knight1.png
2310     beamer-knight2-mask.png
2311     beamer-knight2.png
2312     beamer-knight3-mask.png
2313     beamer-knight3.png
2314     beamer-knight4-mask.png
2315     beamer-knight4.png
2316     beamerlyxexample1.lyx
2317     biblioExample.bib
2318     chess-article.lyx
2319     chessgame.lyx
2320     docbook_article.lyx
2321     europeCV.lyx
2322     example_lyxified.lyx
2323     example_raw.lyx
2324     iecc05.fen
2325     iecc07.fen
2326     iecc12.fen
2327     landslide.lyx
2328     linguistics.lyx
2329     listerrors.lyx
2330     listings.lyx
2331     modernCV.lyx
2332     multicol.lyx
2333     noweb2lyx.lyx
2334     powerdot-example.lyx
2335     script_form.lyx
2336     serial_letter1.lyx
2337     serial_letter2.lyx
2338     serial_letter3.lyx
2339     simplecv.lyx
2340     splash.lyx
2341 ''')
2342
2343
2344 lib_examples_ca_files = Split('''
2345     splash.lyx
2346 ''')
2347
2348
2349 lib_examples_cs_files = Split('''
2350     splash.lyx
2351 ''')
2352
2353
2354 lib_examples_da_files = Split('''
2355     splash.lyx
2356 ''')
2357
2358
2359 lib_examples_de_files = Split('''
2360     Dezimal.lyx
2361     ItemizeBullets.lyx
2362     Lebenslauf.lyx
2363     Minipage.lyx
2364     beispiel_gelyxt.lyx
2365     beispiel_roh.lyx
2366     multicol.lyx
2367     serienbrief1.lyx
2368     serienbrief2.lyx
2369     serienbrief3.lyx
2370     splash.lyx
2371 ''')
2372
2373
2374 lib_examples_fa_files = Split('''
2375     splash.lyx
2376 ''')
2377
2378
2379 lib_examples_fr_files = Split('''
2380     AlignementDecimal.lyx
2381     Foils.lyx
2382     ListesPuces.lyx
2383     Minipage.lyx
2384     exemple_brut.lyx
2385     exemple_lyxifie.lyx
2386     multicol.lyx
2387     simplecv.lyx
2388     splash.lyx
2389 ''')
2390
2391
2392 lib_examples_es_files = Split('''
2393     ItemizeBullets.lyx
2394     ejemplo_con_lyx.lyx
2395     ejemplo_sin_lyx.lyx
2396     mathed.lyx
2397     splash.lyx
2398 ''')
2399
2400
2401 lib_examples_eu_files = Split('''
2402     adibide_gordina.lyx
2403     adibide_lyx-atua.lyx
2404     splash.lyx
2405 ''')
2406
2407
2408 lib_examples_gl_extra_files = Split('''
2409     exemplo_bruto.lyx
2410     exemplo_lyxificado.lyx
2411     splash.lyx
2412 ''')
2413
2414
2415 lib_examples_he_files = Split('''
2416     example_lyxified.lyx
2417     example_raw.lyx
2418     splash.lyx
2419 ''')
2420
2421
2422 lib_examples_hu_files = Split('''
2423     example_lyxified.lyx
2424     example_raw.lyx
2425     splash.lyx
2426 ''')
2427
2428
2429 lib_examples_it_files = Split('''
2430     ItemizeBullets.lyx
2431     splash.lyx
2432 ''')
2433
2434
2435 lib_examples_ja_files = Split('''
2436     splash.lyx
2437 ''')
2438
2439
2440 lib_examples_nl_files = Split('''
2441     multicol.lyx
2442     opsommingstekens.lyx
2443     splash.lyx
2444     voorbeeld_ruw.lyx
2445     voorbeeld_verlyxt.lyx
2446 ''')
2447
2448
2449 lib_examples_pl_files = Split('''
2450     splash.lyx
2451 ''')
2452
2453
2454 lib_examples_pt_files = Split('''
2455     splash.lyx
2456 ''')
2457
2458
2459 lib_examples_ro_files = Split('''
2460     splash.lyx
2461 ''')
2462
2463
2464 lib_examples_ru_files = Split('''
2465     splash.lyx
2466 ''')
2467
2468
2469 lib_examples_sl_files = Split('''
2470     primer_lyxan.lyx
2471     primer_surov.lyx
2472     splash.lyx
2473 ''')
2474
2475
2476 lib_lyx2lyx_files = Split('''
2477     LyX.py
2478     generate_encoding_info.py
2479     lyx2lyx
2480     lyx2lyx_lang.py
2481     lyx_0_06.py
2482     lyx_0_08.py
2483     lyx_0_10.py
2484     lyx_0_12.py
2485     lyx_1_0.py
2486     lyx_1_1.py
2487     lyx_1_1_5.py
2488     lyx_1_1_6_0.py
2489     lyx_1_1_6_3.py
2490     lyx_1_2.py
2491     lyx_1_3.py
2492     lyx_1_4.py
2493     lyx_1_5.py
2494     lyx_1_6.py
2495     parser_tools.py
2496     profiling.py
2497     test_parser_tools.py
2498 ''')
2499
2500
2501 lib_lyx2lyx_extra_files = Split('''
2502     Makefile.am
2503     lyx2lyx_version.py.in
2504 ''')
2505
2506
2507 lib_layouts_files = Split('''
2508     IEEEtran.layout
2509     aa.layout
2510     aapaper.layout
2511     aastex.layout
2512     agu-dtd.layout
2513     agums.layout
2514     amsart.layout
2515     amsbook.layout
2516     apa.layout
2517     arab-article.layout
2518     armenian-article.layout
2519     article.layout
2520     article-beamer.layout
2521     beamer.layout
2522     book.layout
2523     broadway.layout
2524     chess.layout
2525     cl2emult.layout
2526     dinbrief.layout
2527     docbook-book.layout
2528     docbook-chapter.layout
2529     docbook-section.layout
2530     docbook.layout
2531     dtk.layout
2532     egs.layout
2533     elsart.layout
2534     entcs.layout
2535     europecv.layout
2536     extarticle.layout
2537     extbook.layout
2538     extletter.layout
2539     extreport.layout
2540     foils.layout
2541     g-brief-de.layout
2542     g-brief-en.layout
2543     g-brief2.layout
2544     heb-article.layout
2545     heb-letter.layout
2546     hollywood.layout
2547     ijmpc.layout
2548     ijmpd.layout
2549     iopart.layout
2550     isprs.layout
2551     jarticle.layout
2552     jbook.layout
2553     jgrga.layout
2554     jreport.layout
2555     jsarticle.layout
2556     jsbook.layout
2557     kluwer.layout
2558     latex8.layout
2559     letter.layout
2560     literate-article.layout
2561     literate-book.layout
2562     literate-report.layout
2563     llncs.layout
2564     ltugboat.layout
2565     manpage.layout
2566     memoir.layout
2567     moderncv.layout
2568     mwart.layout
2569     mwbk.layout
2570     mwrep.layout
2571     paper.layout
2572     powerdot.layout
2573     report.layout
2574     revtex.layout
2575     revtex4.layout
2576     scrartcl.layout
2577     scrarticle-beamer.layout
2578     scrbook.layout
2579     scrlettr.layout
2580     scrlttr2.layout
2581     scrreprt.layout
2582     seminar.layout
2583     siamltex.layout
2584     simplecv.layout
2585     slides.layout
2586     spie.layout
2587     svglobal.layout
2588     svjog.layout
2589     svprobth.layout
2590     tarticle.layout
2591     tbook.layout
2592     treport.layout
2593 ''')
2594
2595
2596 lib_layouts_inc_files = Split('''
2597     aapaper.inc
2598     agu_stdclass.inc
2599     agu_stdcounters.inc
2600     agu_stdlists.inc
2601     agu_stdsections.inc
2602     agu_stdtitle.inc
2603     aguplus.inc
2604     amsdefs.inc
2605     db_lyxmacros.inc
2606     db_stdcharstyles.inc
2607     db_stdclass.inc
2608     db_stdcounters.inc
2609     db_stdlayouts.inc
2610     db_stdlists.inc
2611     db_stdsections.inc
2612     db_stdstarsections.inc
2613     db_stdstruct.inc
2614     db_stdtitle.inc
2615     literate-scrap.inc
2616     lyxmacros.inc
2617     numarticle.inc
2618     numreport.inc
2619     numrevtex.inc
2620     scrclass.inc
2621     stdcharstyles.inc
2622     stdclass.inc
2623     stdcounters.inc
2624     stdcustom.inc
2625     stdfloats.inc
2626     stdinsets.inc
2627     stdlayouts.inc
2628     stdletter.inc
2629     stdlists.inc
2630     stdsections.inc
2631     stdstarsections.inc
2632     stdstruct.inc
2633     stdtitle.inc
2634     svjour.inc
2635     theorems.inc
2636     theorems-ams.inc
2637     theorems-order.inc
2638     theorems-proof.inc
2639     theorems-starred.inc
2640     theorems-starred-equivalents.inc
2641 ''')
2642
2643
2644 lib_layouts_module_files = Split('''
2645     braille.module
2646     endnotes.module
2647     foottoend.module
2648     hanging.module
2649     linguistics.module
2650     logicalmkup.module
2651     minimalistic.module
2652     theorems-ams-extended.module
2653     theorems-ams.module
2654     theorems-chap.module
2655     theorems-sec.module
2656     theorems-starred.module
2657     theorems-std.module
2658 ''')
2659
2660 lib_scripts_files = Split('''
2661     TeXFiles.py
2662     clean_dvi.py
2663     convertDefault.py
2664     date.py
2665     ext_copy.py
2666     fen2ascii.py
2667     fig2pdftex.py
2668     fig2pstex.py
2669     fig_copy.py
2670     layout2layout.py
2671     legacy_lyxpreview2ppm.py
2672     listerrors
2673     lyxpreview2bitmap.py
2674     lyxpreview_tools.py
2675     tex_copy.py
2676 ''')
2677
2678
2679 lib_bind_files = Split('''
2680     aqua.bind
2681     broadway.bind
2682     cua.bind
2683     cyrkeys.bind
2684     emacs.bind
2685     greekkeys.bind
2686     hollywood.bind
2687     latinkeys.bind
2688     mac.bind
2689     math.bind
2690     menus.bind
2691     sciword.bind
2692     site.bind
2693     xemacs.bind
2694 ''')
2695
2696
2697 lib_bind_fi_files = Split('''
2698     menus.bind
2699 ''')
2700
2701
2702 lib_bind_sv_files = Split('''
2703     menus.bind
2704 ''')
2705
2706
2707 lib_bind_pt_files = Split('''
2708     menus.bind
2709 ''')
2710
2711
2712 lib_bind_de_files = Split('''
2713     menus.bind
2714 ''')
2715
2716
2717 lib_commands_files = Split('''
2718     default.def
2719 ''')
2720
2721
2722 boost_extra_files = Split('''
2723     LICENSE_1_0.txt
2724     Makefile.am
2725 ''')
2726
2727
2728 boost_libs_extra_files = Split('''
2729     Makefile.am
2730     README
2731 ''')
2732
2733
2734 boost_libs_signals_extra_files = Split('''
2735     Makefile.am
2736     signals.vcproj
2737 ''')
2738
2739
2740 boost_libs_signals_src_files = Split('''
2741     connection.cpp
2742     named_slot_map.cpp
2743     signal_base.cpp
2744     slot.cpp
2745     trackable.cpp
2746 ''')
2747
2748
2749 boost_libs_signals_src_extra_files = Split('''
2750     Makefile.am
2751     pch.h
2752 ''')
2753
2754
2755 boost_libs_regex_extra_files = Split('''
2756     Makefile.am
2757     regex.vcproj
2758 ''')
2759
2760
2761 boost_libs_regex_src_files = Split('''
2762     c_regex_traits.cpp
2763     cpp_regex_traits.cpp
2764     cregex.cpp
2765     fileiter.cpp
2766     instances.cpp
2767     posix_api.cpp
2768     regex.cpp
2769     regex_debug.cpp
2770     regex_raw_buffer.cpp
2771     regex_traits_defaults.cpp
2772     w32_regex_traits.cpp
2773     wide_posix_api.cpp
2774     winstances.cpp
2775 ''')
2776
2777
2778 boost_libs_regex_src_extra_files = Split('''
2779     Makefile.am
2780     pch.h
2781 ''')
2782
2783
2784 boost_libs_filesystem_extra_files = Split('''
2785     Makefile.am
2786     filesystem.vcproj
2787 ''')
2788
2789
2790 boost_libs_filesystem_src_files = Split('''
2791     exception.cpp
2792     operations.cpp
2793     path.cpp
2794     portability.cpp
2795 ''')
2796
2797
2798 boost_libs_filesystem_src_extra_files = Split('''
2799     Makefile.am
2800     pch.h
2801 ''')
2802
2803
2804 development_Win32_packaging_installer = Split('''
2805     license.rtf
2806     lyx.nsi
2807     settings.nsh
2808     settings.user.nsh
2809 ''')
2810
2811
2812 development_Win32_packaging_installer_components = Split('''
2813     configure.nsh
2814     core.nsh
2815     dicts.nsh
2816     external.nsh
2817     langselect.nsh
2818     reinstall.nsh
2819     uninstall.nsh
2820     user.nsh
2821     viewer.nsh
2822 ''')
2823
2824
2825 development_Win32_packaging_installer_dialogs = Split('''
2826     external.ini
2827     langselect.ini
2828     reinstall.ini
2829     user.ini
2830     viewer.ini
2831 ''')
2832
2833
2834 development_Win32_packaging_installer_graphics = Split('''
2835     header.bmp
2836     wizard.bmp
2837 ''')
2838
2839
2840 development_Win32_packaging_installer_include = Split('''
2841     declarations.nsh
2842     detection.nsh
2843     filelists.nsh
2844     gui.nsh
2845     init.nsh
2846     lang.nsh
2847     windows.nsh
2848 ''')
2849
2850
2851 development_Win32_packaging_installer_lang = Split('''
2852     english.nsh
2853     french.nsh
2854     german.nsh
2855     italian.nsh
2856 ''')
2857