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