]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
scons_manifest.py: compile fix
[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     break-line.png
1345     buffer-close.png
1346     buffer-export_dvi.png
1347     buffer-export_latex.png
1348     buffer-export_pdf2.png
1349     buffer-export_ps.png
1350     buffer-export_text.png
1351     buffer-new.png
1352     buffer-reload.png
1353     buffer-update_dvi.png
1354     buffer-update_pdf2.png
1355     buffer-update_ps.png
1356     buffer-view_dvi.png
1357     buffer-view_pdf2.png
1358     buffer-view_ps.png
1359     buffer-write-as.png
1360     buffer-write.png
1361     build-program.png
1362     change-accept.png
1363     change-next.png
1364     change-reject.png
1365     changes-merge.png
1366     changes-output.png
1367     changes-track.png
1368     closetab.png
1369     copy.png
1370     cut.png
1371     demote.png
1372     depth-decrement.png
1373     depth-increment.png
1374     dialog-preferences.png
1375     dialog-show-new-inset_citation.png
1376     dialog-show-new-inset_graphics.png
1377     dialog-show-new-inset_include.png
1378     dialog-show-new-inset_ref.png
1379     dialog-show_character.png
1380     dialog-show_findreplace.png
1381     dialog-show_mathdelimiter.png
1382     dialog-show_mathmatrix.png
1383     dialog-show_print.png
1384     dialog-show_spellchecker.png
1385     dialog-toggle_toc.png
1386     down.png
1387     ert-insert.png
1388     file-open.png
1389     float-insert_figure.png
1390     float-insert_table.png
1391     font-bold.png
1392     font-emph.png
1393     font-free-apply.png
1394     font-noun.png
1395     font-sans.png
1396     footnote-insert.png
1397     href-insert.png
1398     index-insert.png
1399     label-insert.png
1400     layout-document.png
1401     layout-paragraph.png
1402     layout.png
1403     layout_Description.png
1404     layout_Enumerate.png
1405     layout_Itemize.png
1406     layout_List.png
1407     layout_LyX-Code.png
1408     layout_Scrap.png
1409     layout_Section.png
1410     lyx-quit.png
1411     lyx.png
1412     marginalnote-insert.png
1413     math-display.png
1414     math-macro-add-greedy-optional-param.png
1415     math-macro-add-optional-param.png
1416     math-macro-add-param.png
1417     math-macro-append-greedy-param.png
1418     math-macro-make-nonoptional.png
1419     math-macro-make-optional.png
1420     math-macro-remove-greedy-param.png
1421     math-macro-remove-optional-param.png
1422     math-macro-remove-param.png
1423     math-macro_newmacroname_newcommand.png
1424     math-matrix.png
1425     math-mode.png
1426     math-subscript.png
1427     math-superscript.png
1428     nomencl-insert.png
1429     note-insert.png
1430     note-next.png
1431     paste.png
1432     promote.png
1433     pin.png
1434     psnfss1.png
1435     psnfss2.png
1436     psnfss3.png
1437     psnfss4.png
1438     redo.png
1439     reload.png
1440     standard.png
1441     tabular-feature_align-center.png
1442     tabular-feature_align-left.png
1443     tabular-feature_align-right.png
1444     tabular-feature_append-column.png
1445     tabular-feature_append-row.png
1446     tabular-feature_delete-column.png
1447     tabular-feature_delete-row.png
1448     tabular-feature_multicolumn.png
1449     tabular-feature_set-all-lines.png
1450     tabular-feature_set-longtabular.png
1451     tabular-feature_set-rotate-cell.png
1452     tabular-feature_toggle-rotate-cell.png
1453     tabular-feature_set-rotate-tabular.png
1454     tabular-feature_toggle-rotate-tabular.png
1455     tabular-feature_toggle-line-bottom.png
1456     tabular-feature_toggle-line-left.png
1457     tabular-feature_toggle-line-right.png
1458     tabular-feature_toggle-line-top.png
1459     tabular-feature_unset-all-lines.png
1460     tabular-feature_valign-bottom.png
1461     tabular-feature_valign-middle.png
1462     tabular-feature_valign-top.png
1463     tabular-insert.png
1464     thesaurus-entry.png
1465     toolbar-toggle_math.png
1466     toolbar-toggle_math_panels.png
1467     toolbar-toggle_table.png
1468     undo.png
1469     unknown.png
1470     up.png
1471     url-insert.png
1472 ''')
1473
1474
1475 lib_images_extra_files = Split('''
1476     README
1477     font-smallcaps.png
1478 ''')
1479
1480
1481 lib_images_math_files = Split('''
1482     Bbbk.png
1483     Finv.png
1484     Game.png
1485     Im.png
1486     Lleftarrow.png
1487     Lsh.png
1488     Re.png
1489     Rrightarrow.png
1490     Rsh.png
1491     Vert.png
1492     Vvdash.png
1493     acute.png
1494     aleph.png
1495     alpha.png
1496     amalg.png
1497     angle.png
1498     approx.png
1499     approxeq.png
1500     asymp.png
1501     backepsilon.png
1502     backprime.png
1503     backsim.png
1504     backsimeq.png
1505     backslash.png
1506     bar.png
1507     bars.png
1508     barwedge.png
1509     because.png
1510     beta.png
1511     beth.png
1512     between.png
1513     bigcap.png
1514     bigcirc.png
1515     bigcup.png
1516     bigodot.png
1517     bigoplus.png
1518     bigotimes.png
1519     bigsqcup.png
1520     bigstar.png
1521     bigtriangledown.png
1522     bigtriangleup.png
1523     biguplus.png
1524     bigvee.png
1525     bigwedge.png
1526     blacklozenge.png
1527     blacksquare.png
1528     blacktriangle.png
1529     blacktriangledown.png
1530     blacktriangleleft.png
1531     blacktriangleright.png
1532     bot.png
1533     bowtie.png
1534     boxdot.png
1535     boxminus.png
1536     boxplus.png
1537     boxtimes.png
1538     breve.png
1539     bullet.png
1540     bumpeq.png
1541     bumpeq2.png
1542     cap.png
1543     cap2.png
1544     cases.png
1545     cdot.png
1546     cdots.png
1547     centerdot.png
1548     check.png
1549     chi.png
1550     circ.png
1551     circeq.png
1552     circlearrowleft.png
1553     circlearrowright.png
1554     circledS.png
1555     circledast.png
1556     circledcirc.png
1557     circleddash.png
1558     clubsuit.png
1559     complement.png
1560     cong.png
1561     coprod.png
1562     cup.png
1563     cup2.png
1564     curlyeqprec.png
1565     curlyeqsucc.png
1566     curlyvee.png
1567     curlywedge.png
1568     curvearrowleft.png
1569     curvearrowright.png
1570     dagger.png
1571     daleth.png
1572     dashleftarrow.png
1573     dashrightarrow.png
1574     dashv.png
1575     ddagger.png
1576     ddot.png
1577     ddots.png
1578     delim.png
1579     delta.png
1580     delta2.png
1581     diagdown.png
1582     diagup.png
1583     diamond.png
1584     diamondsuit.png
1585     digamma.png
1586     div.png
1587     divideontimes.png
1588     dot.png
1589     doteq.png
1590     doteqdot.png
1591     dotplus.png
1592     dotsint.png
1593     dotsintop.png
1594     doublebarwedge.png
1595     downarrow.png
1596     downarrow2.png
1597     downdownarrows.png
1598     downharpoonleft.png
1599     downharpoonright.png
1600     ell.png
1601     empty.png
1602     emptyset.png
1603     epsilon.png
1604     eqcirc.png
1605     eqslantgtr.png
1606     eqslantless.png
1607     equation.png
1608     equiv.png
1609     eta.png
1610     eth.png
1611     exists.png
1612     fallingdotseq.png
1613     flat.png
1614     font.png
1615     forall.png
1616     frac-square.png
1617     frac.png
1618     frown.png
1619     functions.png
1620     gamma.png
1621     gamma2.png
1622     geq.png
1623     geqq.png
1624     geqslant.png
1625     gg.png
1626     ggg.png
1627     gimel.png
1628     gnapprox.png
1629     gneq.png
1630     gneqq.png
1631     gnsim.png
1632     grave.png
1633     gtrapprox.png
1634     gtrdot.png
1635     gtreqless.png
1636     gtreqqless.png
1637     gtrless.png
1638     gtrsim.png
1639     gvertneqq.png
1640     hat.png
1641     hbar.png
1642     heartsuit.png
1643     hookleftarrow.png
1644     hookrightarrow.png
1645     hphantom.png
1646     hslash.png
1647     iiiint.png
1648     iiiintop.png
1649     iiint.png
1650     iiintop.png
1651     iint.png
1652     iintop.png
1653     imath.png
1654     in.png
1655     infty.png
1656     int.png
1657     intercal.png
1658     intop.png
1659     iota.png
1660     jmath.png
1661     kappa.png
1662     lambda.png
1663     lambda2.png
1664     langle.png
1665     lbrace.png
1666     lbrace_rbrace.png
1667     lbracket.png
1668     lbracket_rbracket.png
1669     lceil.png
1670     lceil_rceil.png
1671     ldots.png
1672     leftarrow.png
1673     leftarrow2.png
1674     leftarrowtail.png
1675     leftharpoondown.png
1676     leftharpoonup.png
1677     leftleftarrows.png
1678     leftrightarrow.png
1679     leftrightarrow2.png
1680     leftrightarrows.png
1681     leftrightharpoons.png
1682     leftrightsquigarrow.png
1683     leftthreetimes.png
1684     leq.png
1685     leqq.png
1686     leqslant.png
1687     lessapprox.png
1688     lessdot.png
1689     lesseqgtr.png
1690     lesseqqgtr.png
1691     lessgtr.png
1692     lesssim.png
1693     lfloor.png
1694     lfloor_rfloor.png
1695     ll.png
1696     llcorner.png
1697     lll.png
1698     lnapprox.png
1699     lneq.png
1700     lneqq.png
1701     lnsim.png
1702     longleftarrow.png
1703     longleftarrow2.png
1704     longleftrightarrow.png
1705     longleftrightarrow2.png
1706     longmapsto.png
1707     longrightarrow.png
1708     longrightarrow2.png
1709     looparrowleft.png
1710     looparrowright.png
1711     lozenge.png
1712     lparen.png
1713     lparen_rparen.png
1714     lrcorner.png
1715     ltimes.png
1716     lvertneqq.png
1717     mapsto.png
1718     mathbb_C.png
1719     mathbb_H.png
1720     mathbb_N.png
1721     mathbb_Q.png
1722     mathbb_R.png
1723     mathbb_Z.png
1724     mathcal_F.png
1725     mathcal_H.png
1726     mathcal_L.png
1727     mathcal_O.png
1728     mathcircumflex.png
1729     mathrm_T.png
1730     matrix.png
1731     measuredangle.png
1732     mho.png
1733     mid.png
1734     models.png
1735     mp.png
1736     mu.png
1737     multimap.png
1738     nabla.png
1739     natural.png
1740     ncong.png
1741     nearrow.png
1742     neg.png
1743     neq.png
1744     nexists.png
1745     ngeq.png
1746     ngeqq.png
1747     ngeqslant.png
1748     ngtr.png
1749     ni.png
1750     nleftarrow.png
1751     nleftarrow2.png
1752     nleftrightarrow.png
1753     nleftrightarrow2.png
1754     nleq.png
1755     nleqq.png
1756     nleqslant.png
1757     nless.png
1758     nmid.png
1759     notin.png
1760     nparallel.png
1761     nprec.png
1762     npreceq.png
1763     nrightarrow.png
1764     nrightarrow2.png
1765     nshortmid.png
1766     nshortparallel.png
1767     nsim.png
1768     nsubseteq.png
1769     nsucc.png
1770     nsucceq.png
1771     nsupseteq.png
1772     nsupseteqq.png
1773     ntriangleleft.png
1774     ntrianglelefteq.png
1775     ntriangleright.png
1776     ntrianglerighteq.png
1777     nu.png
1778     nvdash.png
1779     nvdash2.png
1780     nvdash3.png
1781     nwarrow.png
1782     odot.png
1783     oiint.png
1784     oiintop.png
1785     oint.png
1786     ointclockwise.png
1787     ointclockwiseop.png
1788     ointctrclockwise.png
1789     ointctrclockwiseop.png
1790     ointop.png
1791     omega.png
1792     omega2.png
1793     ominus.png
1794     oplus.png
1795     oslash.png
1796     otimes.png
1797     overbrace.png
1798     overleftarrow.png
1799     overleftrightarrow.png
1800     overline.png
1801     overrightarrow.png
1802     overset.png
1803     parallel.png
1804     partial.png
1805     perp.png
1806     phantom.png
1807     phi.png
1808     phi2.png
1809     pi.png
1810     pi2.png
1811     pitchfork.png
1812     pm.png
1813     prec.png
1814     precapprox.png
1815     preccurlyeq.png
1816     preceq.png
1817     precnapprox.png
1818     precnsim.png
1819     precsim.png
1820     prime.png
1821     prod.png
1822     propto.png
1823     psi.png
1824     psi2.png
1825     rangle.png
1826     rbrace.png
1827     rbracket.png
1828     rceil.png
1829     rfloor.png
1830     rho.png
1831     rightarrow.png
1832     rightarrow2.png
1833     rightarrowtail.png
1834     rightharpoondown.png
1835     rightharpoonup.png
1836     rightleftarrows.png
1837     rightleftharpoons.png
1838     rightrightarrows.png
1839     rightsquigarrow.png
1840     rightthreetimes.png
1841     risingdotseq.png
1842     root.png
1843     rparen.png
1844     rtimes.png
1845     searrow.png
1846     setminus.png
1847     sharp.png
1848     shortmid.png
1849     shortparallel.png
1850     sigma.png
1851     sigma2.png
1852     sim.png
1853     simeq.png
1854     slash.png
1855     smallfrown.png
1856     smallsetminus.png
1857     smallsmile.png
1858     smile.png
1859     space.png
1860     spadesuit.png
1861     sphericalangle.png
1862     sqcap.png
1863     sqcup.png
1864     sqiint.png
1865     sqiintop.png
1866     sqint.png
1867     sqintop.png
1868     sqrt-square.png
1869     sqrt.png
1870     sqsubset.png
1871     sqsubseteq.png
1872     sqsupset.png
1873     sqsupseteq.png
1874     square.png
1875     star.png
1876     style.png
1877     style.png
1878     sub.png
1879     subset.png
1880     subset2.png
1881     subseteq.png
1882     subseteqq.png
1883     subsetneq.png
1884     subsetneqq.png
1885     succ.png
1886     succapprox.png
1887     succcurlyeq.png
1888     succeq.png
1889     succnapprox.png
1890     succnsim.png
1891     succsim.png
1892     sum.png
1893     super.png
1894     supset.png
1895     supset2.png
1896     supseteq.png
1897     supseteqq.png
1898     supsetneq.png
1899     supsetneqq.png
1900     surd.png
1901     swarrow.png
1902     tau.png
1903     textrm_AA.png
1904     textrm_O.png
1905     therefore.png
1906     theta.png
1907     theta2.png
1908     thickapprox.png
1909     thicksim.png
1910     tilde.png
1911     times.png
1912     top.png
1913     triangle.png
1914     triangledown.png
1915     triangleleft.png
1916     trianglelefteq.png
1917     triangleq.png
1918     triangleright.png
1919     trianglerighteq.png
1920     twoheadleftarrow.png
1921     twoheadrightarrow.png
1922     ulcorner.png
1923     underbrace.png
1924     underleftarrow.png
1925     underleftrightarrow.png
1926     underline.png
1927     underrightarrow.png
1928     underscore.png
1929     underset.png
1930     uparrow.png
1931     uparrow2.png
1932     updownarrow.png
1933     updownarrow2.png
1934     upharpoonleft.png
1935     upharpoonright.png
1936     uplus.png
1937     upsilon.png
1938     upsilon2.png
1939     upuparrows.png
1940     urcorner.png
1941     varepsilon.png
1942     varkappa.png
1943     varnothing.png
1944     varphi.png
1945     varpi.png
1946     varpropto.png
1947     varrho.png
1948     varsigma.png
1949     varsubsetneq.png
1950     varsubsetneqq.png
1951     varsupsetneq.png
1952     varsupsetneqq.png
1953     vartheta.png
1954     vartriangle.png
1955     vartriangleleft.png
1956     vartriangleright.png
1957     vdash.png
1958     vdash2.png
1959     vdash3.png
1960     vdots.png
1961     vec.png
1962     vee.png
1963     veebar.png
1964     vphantom.png
1965     wedge.png
1966     widehat.png
1967     widetilde.png
1968     wp.png
1969     wr.png
1970     xi.png
1971     xi2.png
1972     zeta.png
1973 ''')
1974
1975
1976 lib_images_math_extra_files = Split('''
1977     ams_arrows.png
1978     ams_misc.png
1979     ams_nrel.png
1980     ams_ops.png
1981     ams_rel.png
1982     arrows.png
1983     bop.png
1984     brel.png
1985     deco.png
1986     deco.png
1987     delim.png
1988     delim0.png
1989     delim1.png
1990     dots.png
1991     font.png
1992     functions.png
1993     greek.png
1994     misc.png
1995     varsz.png
1996 ''')
1997
1998
1999 lib_images_commands_files = Split('''
2000 ''')
2001
2002
2003 lib_images_attic_extra_files = Split('''
2004     dialog-show_mathpanel.png
2005 ''')
2006
2007
2008 lib_tex_files = Split('''
2009     broadway.cls
2010     hollywood.cls
2011     lyxchess.sty
2012     lyxskak.sty
2013     revtex.cls
2014 ''')
2015
2016
2017 lib_doc_files = Split('''
2018     Customization.lyx
2019     DocStyle.lyx
2020     DummyDocument1.lyx
2021     DummyDocument2.lyx
2022     DummyTextDocument.txt
2023     EmbeddedObjects.lyx
2024     Extended.lyx
2025     FAQ.lyx
2026     Intro.lyx
2027     LaTeXConfig.lyx
2028     Reference.lyx
2029     Shortcuts.lyx
2030     Tutorial.lyx
2031     UserGuide.lyx
2032 ''')
2033
2034
2035 lib_doc_biblio_files = Split('''
2036     alphadin.bst
2037     LyXDocs.bib
2038 ''')
2039
2040
2041 lib_doc_clipart_files = Split('''
2042     Abstract.pdf
2043     BoxInsetDefaultQt4.png
2044     ChangesToolbar.png
2045     ChildDocumentQt4.png
2046     CommentNoteImageQt4.png
2047     ERT.png
2048     ExternalMaterialQt4.png
2049     ExtraToolbar.png
2050     FramedNoteImageQt4.png
2051     GreyedOutNoteImageQt4.png
2052     LaTeX.png
2053     LyXNoteImageQt4.png
2054     ShadedNoteImageQt4.png
2055     SpaceMarker.png
2056     StandardToolbar.png
2057     ToolbarEnvBox.png
2058     endnotes.pdf
2059     escher-lsd.eps
2060     floatQt4.png
2061     footnoteQt4.png
2062     labelQt4.png
2063     macrobox.png
2064     macrouse.png
2065     mbox.png
2066     mobius.eps
2067     platypus.eps
2068     referenceQt4.png
2069     ViewToolbar.png
2070     with_fntright.pdf
2071     without_fntright.pdf
2072 ''')
2073
2074
2075 lib_doc_extra_files = Split('''
2076     Makefile.am
2077     Makefile.depend
2078     README.Documentation
2079     depend.py
2080     doc_toc.py
2081 ''')
2082
2083
2084 lib_doc_cs_files = Split('''
2085     Tutorial.lyx
2086 ''')
2087
2088
2089 lib_doc_de_files = Split('''
2090     Customization.lyx
2091     DummyDocument1.lyx
2092     DummyDocument2.lyx
2093     DummyTextDocument.txt
2094     EmbeddedObjects.lyx
2095     Extended.lyx
2096     FAQ.lyx
2097     Intro.lyx
2098     Tutorial.lyx
2099     UserGuide.lyx
2100 ''')
2101
2102
2103 lib_doc_de_clipart_files = Split('''
2104     ERT.png
2105     ExternesMaterialQt4.png
2106     FussnoteQt4.png
2107     GerahmteNotizQt4.png
2108     GleitobjektQt4.png
2109     GrauschriftNotizQt4.png
2110     KommentarQt4.png
2111     LyXNotizQt4.png
2112     Marke.png
2113     Querverweis.png
2114     SchattierteNotizQt4.png
2115     StandardBoxQt4.png
2116     UnterdokumentQt4.png
2117 ''')
2118
2119
2120 lib_doc_da_files = Split('''
2121     Intro.lyx
2122 ''')
2123
2124
2125 lib_doc_es_files = Split('''
2126     DocumentoPostizo1.lyx
2127     DocumentoPostizo2.lyx
2128     DocumentoTextoPostizo.txt
2129     EmbeddedObjects.lyx
2130     Extended.lyx
2131     Intro.lyx
2132     Tutorial.lyx
2133     UserGuide.lyx
2134 ''')
2135
2136
2137 lib_doc_es_biblio_files = Split('''
2138     alphadin.bst
2139     LyXDocs.bib
2140 ''')
2141
2142
2143 lib_doc_es_clipart_files = Split('''
2144     ComentNotaImagenQt4.png
2145     CuadroMinipagQt4.png
2146     DocumentoHijoQt4.png
2147     GrisNotaImagenQt4.png
2148     MaterialExternoQt4.png
2149     NotaEnmarcadaImg.png
2150     NotaLyXImagenQt4.png
2151     NotaSombreadaImg.png
2152     Resumen.pdf
2153     es_ERT.png
2154     etiquetaQt4.png
2155     flotanteQt4.png
2156     notapieQt4.png
2157     referenciaQt4.png
2158 ''')
2159
2160
2161 lib_doc_eu_files = Split('''
2162     Customization.lyx
2163     Extended.lyx
2164     FAQ.lyx
2165     Intro.lyx
2166     Tutorial.lyx
2167     UserGuide.lyx
2168 ''')
2169
2170
2171 lib_doc_fr_files = Split('''
2172     Customization.lyx
2173     EmbeddedObjects.lyx
2174     Extended.lyx
2175     FAQ.lyx
2176     Intro.lyx
2177     Tutorial.lyx
2178     UserGuide.lyx
2179 ''')
2180
2181
2182 lib_doc_fr_clipart_files = Split('''
2183     BoxInsetDefaultQt4.png
2184     ChildDocumentQt4.png
2185     CommentNoteImageQt4.png
2186     FramedNoteImageQt4.png
2187     GreyedOutNoteImageQt4.png
2188     LyXNoteImageQt4.png
2189     ShadedNoteImageQt4.png
2190     floatQt4.png
2191     footnoteQt4.png
2192     labelQt4.png
2193 ''')
2194
2195
2196 lib_doc_gl_extra_files = Split('''
2197     Intro.lyx
2198     Tutorial.lyx
2199 ''')
2200
2201
2202 lib_doc_he_files = Split('''
2203     Intro.lyx
2204     Tutorial.lyx
2205 ''')
2206
2207
2208 lib_doc_hu_files = Split('''
2209     Intro.lyx
2210     Tutorial.lyx
2211 ''')
2212
2213
2214 lib_doc_it_files = Split('''
2215     Customization.lyx
2216     Intro.lyx
2217     Tutorial.lyx
2218     UserGuide.lyx
2219 ''')
2220
2221
2222 lib_doc_nb_files = Split('''
2223     Intro.lyx
2224 ''')
2225
2226
2227 lib_doc_nl_files = Split('''
2228     Intro.lyx
2229     Tutorial.lyx
2230 ''')
2231
2232
2233 lib_doc_pl_files = Split('''
2234     Extended.lyx
2235     Intro.lyx
2236     Tutorial.lyx
2237 ''')
2238
2239
2240 lib_doc_pt_files = Split('''
2241     Intro.lyx
2242     Tutorial.lyx
2243 ''')
2244
2245
2246 lib_doc_ro_files = Split('''
2247     Intro.lyx
2248 ''')
2249
2250
2251 lib_doc_ru_files = Split('''
2252     FAQ.lyx
2253     Intro.lyx
2254     Tutorial.lyx
2255 ''')
2256
2257
2258 lib_doc_sl_files = Split('''
2259     Intro.lyx
2260     Tutorial.lyx
2261 ''')
2262
2263
2264 lib_doc_sk_files = Split('''
2265     Tutorial.lyx
2266     UserGuide.lyx
2267 ''')
2268
2269
2270 lib_doc_sv_files = Split('''
2271     Intro.lyx
2272     Tutorial.lyx
2273 ''')
2274
2275
2276 lib_examples_files = Split('''
2277     Braille.lyx
2278     CV-image.eps
2279     CV-image.png
2280     Foils.lyx
2281     ItemizeBullets.lyx
2282     Literate.lyx
2283     Minipage.lyx
2284     aa_sample.lyx
2285     aas_sample.lyx
2286     amsart-test.lyx
2287     amsbook-test.lyx
2288     armenian-article.lyx
2289     beamer-g4-mask.jpg
2290     beamer-g4.jpg
2291     beamer-icsi-logo.pdf
2292     beamer-knight1-mask.png
2293     beamer-knight1.png
2294     beamer-knight2-mask.png
2295     beamer-knight2.png
2296     beamer-knight3-mask.png
2297     beamer-knight3.png
2298     beamer-knight4-mask.png
2299     beamer-knight4.png
2300     beamerlyxexample1.lyx
2301     biblioExample.bib
2302     chess-article.lyx
2303     chessgame.lyx
2304     docbook_article.lyx
2305     europeCV.lyx
2306     example_lyxified.lyx
2307     example_raw.lyx
2308     iecc05.fen
2309     iecc07.fen
2310     iecc12.fen
2311     landslide.lyx
2312     linguistics.lyx
2313     listerrors.lyx
2314     listings.lyx
2315     mathed.lyx
2316     modernCV.lyx
2317     multicol.lyx
2318     noweb2lyx.lyx
2319     powerdot-example.lyx
2320     script_form.lyx
2321     simplecv.lyx
2322     splash.lyx
2323 ''')
2324
2325
2326 lib_examples_ca_files = Split('''
2327     splash.lyx
2328 ''')
2329
2330
2331 lib_examples_cs_files = Split('''
2332     splash.lyx
2333 ''')
2334
2335
2336 lib_examples_da_files = Split('''
2337     splash.lyx
2338 ''')
2339
2340
2341 lib_examples_de_files = Split('''
2342     Dezimal.lyx
2343     ItemizeBullets.lyx
2344     Lebenslauf.lyx
2345     Minipage.lyx
2346     beispiel_gelyxt.lyx
2347     beispiel_roh.lyx
2348     mathed.lyx
2349     multicol.lyx
2350     splash.lyx
2351 ''')
2352
2353
2354 lib_examples_fa_files = Split('''
2355     splash.lyx
2356 ''')
2357
2358
2359 lib_examples_fr_files = Split('''
2360     AlignementDecimal.lyx
2361     Foils.lyx
2362     ListesPuces.lyx
2363     Minipage.lyx
2364     exemple_brut.lyx
2365     exemple_lyxifie.lyx
2366     mathed.lyx
2367     multicol.lyx
2368     simplecv.lyx
2369     splash.lyx
2370 ''')
2371
2372
2373 lib_examples_es_files = Split('''
2374     ItemizeBullets.lyx
2375     ejemplo_con_lyx.lyx
2376     ejemplo_sin_lyx.lyx
2377     splash.lyx
2378 ''')
2379
2380
2381 lib_examples_eu_files = Split('''
2382     adibide_gordina.lyx
2383     adibide_lyx-atua.lyx
2384     splash.lyx
2385 ''')
2386
2387
2388 lib_examples_gl_extra_files = Split('''
2389     exemplo_bruto.lyx
2390     exemplo_lyxificado.lyx
2391     splash.lyx
2392 ''')
2393
2394
2395 lib_examples_he_files = Split('''
2396     example_lyxified.lyx
2397     example_raw.lyx
2398     splash.lyx
2399 ''')
2400
2401
2402 lib_examples_hu_files = Split('''
2403     example_lyxified.lyx
2404     example_raw.lyx
2405     splash.lyx
2406 ''')
2407
2408
2409 lib_examples_it_files = Split('''
2410     ItemizeBullets.lyx
2411     splash.lyx
2412 ''')
2413
2414
2415 lib_examples_nl_files = Split('''
2416     multicol.lyx
2417     opsommingstekens.lyx
2418     splash.lyx
2419     voorbeeld_ruw.lyx
2420     voorbeeld_verlyxt.lyx
2421 ''')
2422
2423
2424 lib_examples_pl_files = Split('''
2425     splash.lyx
2426 ''')
2427
2428
2429 lib_examples_pt_files = Split('''
2430     splash.lyx
2431 ''')
2432
2433
2434 lib_examples_ro_files = Split('''
2435     splash.lyx
2436 ''')
2437
2438
2439 lib_examples_ru_files = Split('''
2440     splash.lyx
2441 ''')
2442
2443
2444 lib_examples_sl_files = Split('''
2445     primer_lyxan.lyx
2446     primer_surov.lyx
2447     splash.lyx
2448 ''')
2449
2450
2451 lib_lyx2lyx_files = Split('''
2452     LyX.py
2453     generate_encoding_info.py
2454     lyx2lyx
2455     lyx2lyx_lang.py
2456     lyx_0_06.py
2457     lyx_0_08.py
2458     lyx_0_10.py
2459     lyx_0_12.py
2460     lyx_1_0.py
2461     lyx_1_1.py
2462     lyx_1_1_5.py
2463     lyx_1_1_6_0.py
2464     lyx_1_1_6_3.py
2465     lyx_1_2.py
2466     lyx_1_3.py
2467     lyx_1_4.py
2468     lyx_1_5.py
2469     lyx_1_6.py
2470     parser_tools.py
2471     profiling.py
2472     test_parser_tools.py
2473 ''')
2474
2475
2476 lib_lyx2lyx_extra_files = Split('''
2477     Makefile.am
2478     lyx2lyx_version.py.in
2479 ''')
2480
2481
2482 lib_layouts_files = Split('''
2483     IEEEtran.layout
2484     aa.layout
2485     aapaper.layout
2486     aastex.layout
2487     agu-dtd.layout
2488     agums.layout
2489     amsart.layout
2490     amsbook.layout
2491     apa.layout
2492     arab-article.layout
2493     armenian-article.layout
2494     article.layout
2495     beamer.layout
2496     book.layout
2497     broadway.layout
2498     chess.layout
2499     cl2emult.layout
2500     dinbrief.layout
2501     docbook-book.layout
2502     docbook-chapter.layout
2503     docbook-section.layout
2504     docbook.layout
2505     dtk.layout
2506     egs.layout
2507     elsart.layout
2508     entcs.layout
2509     europecv.layout
2510     extarticle.layout
2511     extbook.layout
2512     extletter.layout
2513     extreport.layout
2514     foils.layout
2515     g-brief-de.layout
2516     g-brief-en.layout
2517     g-brief2.layout
2518     heb-article.layout
2519     heb-letter.layout
2520     hollywood.layout
2521     ijmpc.layout
2522     ijmpd.layout
2523     iopart.layout
2524     isprs.layout
2525     jarticle.layout
2526     jbook.layout
2527     jgrga.layout
2528     jreport.layout
2529     jsarticle.layout
2530     jsbook.layout
2531     kluwer.layout
2532     latex8.layout
2533     letter.layout
2534     literate-article.layout
2535     literate-book.layout
2536     literate-report.layout
2537     llncs.layout
2538     ltugboat.layout
2539     manpage.layout
2540     memoir.layout
2541     moderncv.layout
2542     mwart.layout
2543     mwbk.layout
2544     mwrep.layout
2545     paper.layout
2546     powerdot.layout
2547     report.layout
2548     revtex.layout
2549     revtex4.layout
2550     scrartcl.layout
2551     scrbook.layout
2552     scrlettr.layout
2553     scrlttr2.layout
2554     scrreprt.layout
2555     seminar.layout
2556     siamltex.layout
2557     simplecv.layout
2558     slides.layout
2559     spie.layout
2560     svglobal.layout
2561     svjog.layout
2562     svprobth.layout
2563     tarticle.layout
2564     tbook.layout
2565     treport.layout
2566 ''')
2567
2568
2569 lib_layouts_inc_files = Split('''
2570     aapaper.inc
2571     agu_stdclass.inc
2572     agu_stdcounters.inc
2573     agu_stdlists.inc
2574     agu_stdsections.inc
2575     agu_stdtitle.inc
2576     aguplus.inc
2577     amsdefs.inc
2578     db_lyxmacros.inc
2579     db_stdcharstyles.inc
2580     db_stdclass.inc
2581     db_stdcounters.inc
2582     db_stdlayouts.inc
2583     db_stdlists.inc
2584     db_stdsections.inc
2585     db_stdstarsections.inc
2586     db_stdstruct.inc
2587     db_stdtitle.inc
2588     literate-scrap.inc
2589     lyxmacros.inc
2590     numarticle.inc
2591     numreport.inc
2592     numrevtex.inc
2593     scrclass.inc
2594     stdcharstyles.inc
2595     stdclass.inc
2596     stdcounters.inc
2597     stdcustom.inc
2598     stdfloats.inc
2599     stdinsets.inc
2600     stdlayouts.inc
2601     stdletter.inc
2602     stdlists.inc
2603     stdsections.inc
2604     stdstarsections.inc
2605     stdstruct.inc
2606     stdtitle.inc
2607     svjour.inc
2608     theorems.inc
2609     theorems-ams.inc
2610     theorems-order.inc
2611     theorems-proof.inc
2612     theorems-starred.inc
2613     theorems-starred-equivalents.inc
2614 ''')
2615
2616
2617 lib_layouts_module_files = Split('''
2618     braille.module
2619     endnotes.module
2620     foottoend.module
2621     hanging.module
2622     linguistics.module
2623     logicalmkup.module
2624     theorems-ams-extended.module
2625     theorems-ams.module
2626     theorems-chap.module
2627     theorems-sec.module
2628     theorems-starred.module
2629     theorems-std.module
2630 ''')
2631
2632 lib_scripts_files = Split('''
2633     TeXFiles.py
2634     clean_dvi.py
2635     convertDefault.py
2636     date.py
2637     ext_copy.py
2638     fen2ascii.py
2639     fig2pdftex.py
2640     fig2pstex.py
2641     fig_copy.py
2642     layout2layout.py
2643     legacy_lyxpreview2ppm.py
2644     listerrors
2645     lyxpreview2bitmap.py
2646     lyxpreview_tools.py
2647     tex_copy.py
2648 ''')
2649
2650
2651 lib_bind_files = Split('''
2652     aqua.bind
2653     broadway.bind
2654     cua.bind
2655     cyrkeys.bind
2656     emacs.bind
2657     greekkeys.bind
2658     hollywood.bind
2659     latinkeys.bind
2660     mac.bind
2661     math.bind
2662     menus.bind
2663     sciword.bind
2664     site.bind
2665     xemacs.bind
2666 ''')
2667
2668
2669 lib_bind_fi_files = Split('''
2670     menus.bind
2671 ''')
2672
2673
2674 lib_bind_sv_files = Split('''
2675     menus.bind
2676 ''')
2677
2678
2679 lib_bind_pt_files = Split('''
2680     menus.bind
2681 ''')
2682
2683
2684 lib_bind_de_files = Split('''
2685     menus.bind
2686 ''')
2687
2688
2689 lib_commands_files = Split('''
2690     default.def
2691 ''')
2692
2693
2694 boost_extra_files = Split('''
2695     LICENSE_1_0.txt
2696     Makefile.am
2697 ''')
2698
2699
2700 boost_libs_extra_files = Split('''
2701     Makefile.am
2702     README
2703 ''')
2704
2705
2706 boost_libs_signals_extra_files = Split('''
2707     Makefile.am
2708     signals.vcproj
2709 ''')
2710
2711
2712 boost_libs_signals_src_files = Split('''
2713     connection.cpp
2714     named_slot_map.cpp
2715     signal_base.cpp
2716     slot.cpp
2717     trackable.cpp
2718 ''')
2719
2720
2721 boost_libs_signals_src_extra_files = Split('''
2722     Makefile.am
2723     pch.h
2724 ''')
2725
2726
2727 boost_libs_regex_extra_files = Split('''
2728     Makefile.am
2729     regex.vcproj
2730 ''')
2731
2732
2733 boost_libs_regex_src_files = Split('''
2734     c_regex_traits.cpp
2735     cpp_regex_traits.cpp
2736     cregex.cpp
2737     fileiter.cpp
2738     instances.cpp
2739     posix_api.cpp
2740     regex.cpp
2741     regex_debug.cpp
2742     regex_raw_buffer.cpp
2743     regex_traits_defaults.cpp
2744     w32_regex_traits.cpp
2745     wide_posix_api.cpp
2746     winstances.cpp
2747 ''')
2748
2749
2750 boost_libs_regex_src_extra_files = Split('''
2751     Makefile.am
2752     pch.h
2753 ''')
2754
2755
2756 boost_libs_filesystem_extra_files = Split('''
2757     Makefile.am
2758     filesystem.vcproj
2759 ''')
2760
2761
2762 boost_libs_filesystem_src_files = Split('''
2763     exception.cpp
2764     operations.cpp
2765     path.cpp
2766     portability.cpp
2767 ''')
2768
2769
2770 boost_libs_filesystem_src_extra_files = Split('''
2771     Makefile.am
2772     pch.h
2773 ''')
2774
2775
2776 development_Win32_packaging_installer = Split('''
2777     license.rtf
2778     lyx.nsi
2779     settings.nsh
2780     settings.user.nsh
2781 ''')
2782
2783
2784 development_Win32_packaging_installer_components = Split('''
2785     configure.nsh
2786     core.nsh
2787     dicts.nsh
2788     external.nsh
2789     langselect.nsh
2790     reinstall.nsh
2791     uninstall.nsh
2792     user.nsh
2793     viewer.nsh
2794 ''')
2795
2796
2797 development_Win32_packaging_installer_dialogs = Split('''
2798     external.ini
2799     langselect.ini
2800     reinstall.ini
2801     user.ini
2802     viewer.ini
2803 ''')
2804
2805
2806 development_Win32_packaging_installer_graphics = Split('''
2807     header.bmp
2808     wizard.bmp
2809 ''')
2810
2811
2812 development_Win32_packaging_installer_include = Split('''
2813     declarations.nsh
2814     detection.nsh
2815     filelists.nsh
2816     gui.nsh
2817     init.nsh
2818     lang.nsh
2819     windows.nsh
2820 ''')
2821
2822
2823 development_Win32_packaging_installer_lang = Split('''
2824     english.nsh
2825     french.nsh
2826     german.nsh
2827     italian.nsh
2828 ''')
2829