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