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