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