]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
adjust
[lyx.git] / development / scons / scons_manifest.py
1 from SCons.Util import Split
2
3 TOP_extra_files = Split('''
4     ABOUT-NLS
5     ANNOUNCE
6     COPYING
7     INSTALL
8     INSTALL.MacOSX
9     INSTALL.Win32
10     INSTALL.autoconf
11     INSTALL.cmake
12     INSTALL.scons
13     Makefile.am
14     NEWS
15     README
16     README.Cygwin
17     README.Win32
18     README.localization
19     RELEASE-NOTES
20     UPGRADING
21     autogen.sh
22     config.log
23     configure.ac
24     lyx.man
25     rename.sh
26     scons_lyx.log
27 ''')
28
29
30 src_header_files = Split('''
31     ASpell_local.h
32     Author.h
33     BiblioInfo.h
34     Bidi.h
35     Box.h
36     BranchList.h
37     Buffer.h
38     BufferList.h
39     BufferParams.h
40     BufferView.h
41     Bullet.h
42     Changes.h
43     Chktex.h
44     CmdDef.h
45     Color.h
46     Converter.h
47     ConverterCache.h
48     CoordCache.h
49     Counters.h
50     Cursor.h
51     CursorSlice.h
52     CutAndPaste.h
53     DepTable.h
54     Dimension.h
55     DispatchResult.h
56     DocIterator.h
57     EmbeddedFiles.h
58     Encoding.h
59     ErrorList.h
60     Exporter.h
61     FloatList.h
62     Floating.h
63     Font.h
64     FontIterator.h
65     FontList.h
66     Format.h
67     FuncRequest.h
68     FuncStatus.h
69     Graph.h
70     ISpell.h
71     Importer.h
72     InsetIterator.h
73     InsetList.h
74     Intl.h
75     KeyMap.h
76     KeySequence.h
77     LaTeX.h
78     LaTeXFeatures.h
79     Language.h
80     Layout.h
81     LayoutEnums.h
82     LayoutPtr.h
83     Length.h
84     Lexer.h
85     LyX.h
86     LyXAction.h
87     LyXFunc.h
88     LyXRC.h
89     LyXVC.h
90     MenuBackend.h
91     Messages.h
92     MetricsInfo.h
93     ModuleList.h
94     Mover.h
95     OutputParams.h
96     ParIterator.h
97     Paragraph.h
98     ParagraphList.h
99     ParagraphMetrics.h
100     ParagraphParameters.h
101     PDFOptions.h
102     PrinterParams.h
103     PSpell.h
104     Row.h
105     Section.h
106     Server.h
107     ServerSocket.h
108     Session.h
109     Spacing.h
110     SpellBase.h
111     TexRow.h
112     Text.h
113     TextClass.h
114     TextClassList.h
115     TextMetrics.h
116     Thesaurus.h
117     TocBackend.h
118     ToolbarBackend.h
119     Trans.h
120     Undo.h
121     VCBackend.h
122     VSpace.h
123     Variables.h
124     WordLangTuple.h
125     buffer_funcs.h
126     debug.h
127     factory.h
128     gettext.h
129     lfuns.h
130     lyxfind.h
131     output.h
132     output_docbook.h
133     output_latex.h
134     output_plaintext.h
135     paper.h
136     paragraph_funcs.h
137     rowpainter.h
138     sgml.h
139     update_flags.h
140     version.h
141 ''')
142
143
144 src_pre_files = Split('''
145     Author.cpp
146     BiblioInfo.cpp
147     Bidi.cpp
148     BranchList.cpp
149     Buffer.cpp
150     BufferList.cpp
151     BufferParams.cpp
152     BufferView.cpp
153     Bullet.cpp
154     Changes.cpp
155     Chktex.cpp
156     CmdDef.cpp
157     Color.cpp
158     Converter.cpp
159     ConverterCache.cpp
160     CoordCache.cpp
161     Counters.cpp
162     Cursor.cpp
163     CursorSlice.cpp
164     CutAndPaste.cpp
165     DepTable.cpp
166     DocIterator.cpp
167     EmbeddedFiles.cpp
168     Encoding.cpp
169     ErrorList.cpp
170     Exporter.cpp
171     FloatList.cpp
172     Floating.cpp
173     Font.cpp
174     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     GuiErrorList.h
767     GuiERT.h
768     GuiExternal.h
769     GuiFloat.h
770     GuiFontExample.h
771     GuiFontLoader.h
772     GuiGraphics.h
773     GuiGraphicsUi.h
774     GuiHyperlink.h
775     GuiImage.h
776     GuiImplementation.h
777     GuiInclude.h
778     GuiIndex.h
779     GuiKeySymbol.h
780     GuiListings.h
781     GuiLog.h
782     GuiMath.h
783     GuiMathMatrix.h
784     GuiMenubar.h
785     GuiNomencl.h
786     GuiNote.h
787     GuiPainter.h
788     GuiParagraph.h
789     GuiPopupMenu.h
790     GuiPrefs.h
791     GuiPrint.h
792     GuiRef.h
793     GuiSearch.h
794     GuiSelection.h
795     GuiSelectionManager.h
796     GuiSendto.h
797     GuiSetBorder.h
798     GuiShowFile.h
799     GuiSpellchecker.h
800     GuiTabularCreate.h
801     GuiTabular.h
802     GuiTexinfo.h
803     GuiThesaurus.h
804     GuiToc.h
805     GuiToolbar.h
806     GuiToolbars.h
807     GuiView.h
808     GuiViewSource.h
809     GuiVSpace.h
810     GuiWorkArea.h
811     GuiWrap.h
812     IconPalette.h
813     InsertTableWidget.h
814     LaTeXHighlighter.h
815     LengthCombo.h
816     LyXFileDialog.h
817     PanelStack.h
818     TocModel.h
819     TocWidget.h
820     Validator.h
821     qlkey.h
822     qt_helpers.h
823 ''')
824
825
826 src_frontends_qt4_files = Split('''
827                 ../ButtonPolicy.cpp
828                 ../Dialog.cpp
829                 ../frontend_helpers.cpp
830     Action.cpp
831     BulletsModule.cpp
832     ButtonController.cpp
833     ColorCache.cpp
834     Dialogs.cpp
835     EmptyTable.cpp
836     FileDialog.cpp
837     FloatPlacement.cpp
838     GuiAbout.cpp
839     GuiApplication.cpp
840     GuiBibitem.cpp
841     GuiBibtex.cpp
842     GuiBox.cpp
843     GuiBranch.cpp
844     GuiBranches.cpp
845     GuiChanges.cpp
846     GuiCharacter.cpp
847     GuiCitation.cpp
848     GuiClipboard.cpp
849     GuiCommandBuffer.cpp
850     GuiCommandEdit.cpp
851     GuiDelimiter.cpp
852     GuiDialog.cpp
853     GuiDocument.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     GuiHyperlink.cpp
863     GuiImage.cpp
864     GuiImplementation.cpp
865     GuiInclude.cpp
866     GuiIndex.cpp
867     GuiKeySymbol.cpp
868     GuiListings.cpp
869     GuiLog.cpp
870     GuiMath.cpp
871     GuiMathMatrix.cpp
872     GuiMenubar.cpp
873     GuiNomencl.cpp
874     GuiNote.cpp
875     GuiPainter.cpp
876     GuiParagraph.cpp
877     GuiPopupMenu.cpp
878     GuiPrefs.cpp
879     GuiPrint.cpp
880     GuiRef.cpp
881     GuiSearch.cpp
882     GuiSelection.cpp
883     GuiSelectionManager.cpp
884     GuiSendto.cpp
885     GuiSetBorder.cpp
886     GuiShowFile.cpp
887     GuiSpellchecker.cpp
888     GuiTabular.cpp
889     GuiTabularCreate.cpp
890     GuiTexinfo.cpp
891     GuiThesaurus.cpp
892     GuiToc.cpp
893     GuiToolbar.cpp
894     GuiToolbars.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     ERTUi.ui
939     ErrorListUi.ui
940     ExternalUi.ui
941     FloatPlacementUi.ui
942     FloatUi.ui
943     FontUi.ui
944     GraphicsUi.ui
945     HyperlinkUi.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     PrefDateUi.ui
965     PrefDisplayUi.ui
966     PrefFileformatsUi.ui
967     PrefIdentityUi.ui
968     PrefKeyboardUi.ui
969     PrefLanguageUi.ui
970     PrefLatexUi.ui
971     PrefPathsUi.ui
972     PrefPlaintextUi.ui
973     PrefPrinterUi.ui
974     PrefScreenFontsUi.ui
975     PrefShortcutsUi.ui
976     PrefSpellcheckerUi.ui
977     PrefUi.ui
978     PrefsUi.ui
979     PrintUi.ui
980     RefUi.ui
981     SearchUi.ui
982     SendtoUi.ui
983     ShortcutUi.ui
984     ShowFileUi.ui
985     SpellcheckerUi.ui
986     TabularCreateUi.ui
987     TabularUi.ui
988     TexinfoUi.ui
989     TextLayoutUi.ui
990     ThesaurusUi.ui
991     TocUi.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     InsetHyperlink.h
1031     InsetInclude.h
1032     InsetIndex.h
1033     InsetInfo.h
1034     InsetLabel.h
1035     InsetLine.h
1036     InsetListings.h
1037     InsetListingsParams.h
1038     InsetMarginal.h
1039     InsetNewline.h
1040     InsetNomencl.h
1041     InsetNote.h
1042     InsetOptArg.h
1043     InsetPagebreak.h
1044     InsetQuotes.h
1045     InsetRef.h
1046     InsetSpace.h
1047     InsetSpecialChar.h
1048     InsetTOC.h
1049     InsetTabular.h
1050     InsetText.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     InsetHyperlink.cpp
1087     InsetInclude.cpp
1088     InsetIndex.cpp
1089     InsetInfo.cpp
1090     InsetLabel.cpp
1091     InsetLine.cpp
1092     InsetListings.cpp
1093     InsetListingsParams.cpp
1094     InsetMarginal.cpp
1095     InsetNewline.cpp
1096     InsetNomencl.cpp
1097     InsetNote.cpp
1098     InsetOptArg.cpp
1099     InsetPagebreak.cpp
1100     InsetQuotes.cpp
1101     InsetRef.cpp
1102     InsetSpace.cpp
1103     InsetSpecialChar.cpp
1104     InsetTOC.cpp
1105     InsetTabular.cpp
1106     InsetText.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     href-insert.png
1438     index-insert.png
1439     label-insert.png
1440     layout-document.png
1441     layout-paragraph.png
1442     layout.png
1443     layout_Description.png
1444     layout_Enumerate.png
1445     layout_Itemize.png
1446     layout_List.png
1447     layout_LyX-Code.png
1448     layout_Scrap.png
1449     layout_Section.png
1450     lyx-quit.png
1451     lyx.png
1452     marginalnote-insert.png
1453     math-display.png
1454     math-matrix.png
1455     math-mode.png
1456     math-subscript.png
1457     math-superscript.png
1458     nomencl-insert.png
1459     note-insert.png
1460     note-next.png
1461     paste.png
1462     promote.png
1463     psnfss1.png
1464     psnfss2.png
1465     psnfss3.png
1466     psnfss4.png
1467     redo.png
1468     reload.png
1469     standard.png
1470     tabular-feature_align-center.png
1471     tabular-feature_align-left.png
1472     tabular-feature_align-right.png
1473     tabular-feature_append-column.png
1474     tabular-feature_append-row.png
1475     tabular-feature_delete-column.png
1476     tabular-feature_delete-row.png
1477     tabular-feature_multicolumn.png
1478     tabular-feature_set-all-lines.png
1479     tabular-feature_set-longtabular.png
1480     tabular-feature_set-rotate-cell.png
1481     tabular-feature_toggle-rotate-cell.png
1482     tabular-feature_set-rotate-tabular.png
1483     tabular-feature_toggle-rotate-tabular.png
1484     tabular-feature_toggle-line-bottom.png
1485     tabular-feature_toggle-line-left.png
1486     tabular-feature_toggle-line-right.png
1487     tabular-feature_toggle-line-top.png
1488     tabular-feature_unset-all-lines.png
1489     tabular-feature_valign-bottom.png
1490     tabular-feature_valign-middle.png
1491     tabular-feature_valign-top.png
1492     tabular-insert.png
1493     thesaurus-entry.png
1494     toolbar-toggle_math.png
1495     toolbar-toggle_math_panels.png
1496     toolbar-toggle_table.png
1497     undo.png
1498     unknown.png
1499     up.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_commands_files = Split('''
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     ERT.png
2133     ExternesMaterialQt4.png
2134     FussnoteQt4.png
2135     GerahmteNotizQt4.png
2136     GleitobjektQt4.png
2137     GrauschriftNotizQt4.png
2138     KommentarQt4.png
2139     LyXNotizQt4.png
2140     Marke.png
2141     Querverweis.png
2142     SchattierteNotizQt4.png
2143     StandardBoxQt4.png
2144     UnterdokumentQt4.png
2145 ''')
2146
2147
2148 lib_doc_da_files = Split('''
2149     Intro.lyx
2150 ''')
2151
2152
2153 lib_doc_es_files = Split('''
2154     DocumentoPostizo1.lyx
2155     DocumentoPostizo2.lyx
2156     DocumentoTextoPostizo.txt
2157     EmbeddedObjects.lyx
2158     Extended.lyx
2159     Intro.lyx
2160     Tutorial.lyx
2161     UserGuide.lyx
2162 ''')
2163
2164
2165 lib_doc_es_biblio_files = Split('''
2166     alphadin.bst
2167     LyXDocs.bib
2168 ''')
2169
2170
2171 lib_doc_es_clipart_files = Split('''
2172     ComentNotaImagenQt4.png
2173     CuadroMinipagQt4.png
2174     DocumentoHijoQt4.png
2175     GrisNotaImagenQt4.png
2176     MaterialExternoQt4.png
2177     NotaEnmarcadaImg.png
2178     NotaLyXImagenQt4.png
2179     NotaSombreadaImg.png
2180     Resumen.pdf
2181     es_ERT.png
2182     etiquetaQt4.png
2183     flotanteQt4.png
2184     notapieQt4.png
2185     referenciaQt4.png
2186 ''')
2187
2188
2189 lib_doc_eu_files = Split('''
2190     Customization.lyx
2191     Extended.lyx
2192     FAQ.lyx
2193     Intro.lyx
2194     Tutorial.lyx
2195     UserGuide.lyx
2196 ''')
2197
2198
2199 lib_doc_fr_files = Split('''
2200     Customization.lyx
2201     Extended.lyx
2202     FAQ.lyx
2203     Intro.lyx
2204     Tutorial.lyx
2205     UserGuide.lyx
2206 ''')
2207
2208
2209 lib_doc_gl_extra_files = Split('''
2210     Intro.lyx
2211     Tutorial.lyx
2212 ''')
2213
2214
2215 lib_doc_he_files = Split('''
2216     Intro.lyx
2217     Tutorial.lyx
2218 ''')
2219
2220
2221 lib_doc_hu_files = Split('''
2222     Intro.lyx
2223     Tutorial.lyx
2224 ''')
2225
2226
2227 lib_doc_it_files = Split('''
2228     Customization.lyx
2229     Intro.lyx
2230     Tutorial.lyx
2231     UserGuide.lyx
2232 ''')
2233
2234
2235 lib_doc_nb_files = Split('''
2236     Intro.lyx
2237 ''')
2238
2239
2240 lib_doc_nl_files = Split('''
2241     Intro.lyx
2242     Tutorial.lyx
2243 ''')
2244
2245
2246 lib_doc_pl_files = Split('''
2247     Extended.lyx
2248     Intro.lyx
2249     Tutorial.lyx
2250 ''')
2251
2252
2253 lib_doc_pt_files = Split('''
2254     Intro.lyx
2255     Tutorial.lyx
2256 ''')
2257
2258
2259 lib_doc_ro_files = Split('''
2260     Intro.lyx
2261 ''')
2262
2263
2264 lib_doc_ru_files = Split('''
2265     FAQ.lyx
2266     Intro.lyx
2267     Tutorial.lyx
2268 ''')
2269
2270
2271 lib_doc_sl_files = Split('''
2272     Intro.lyx
2273     Tutorial.lyx
2274 ''')
2275
2276
2277 lib_doc_sk_files = Split('''
2278     Tutorial.lyx
2279     UserGuide.lyx
2280 ''')
2281
2282
2283 lib_doc_sv_files = Split('''
2284     Intro.lyx
2285     Tutorial.lyx
2286 ''')
2287
2288
2289 lib_examples_files = Split('''
2290     CV-image.eps
2291     CV-image.png
2292     Foils.lyx
2293     ItemizeBullets.lyx
2294     Literate.lyx
2295     Minipage.lyx
2296     aa_sample.lyx
2297     aas_sample.lyx
2298     amsart-test.lyx
2299     amsbook-test.lyx
2300     armenian-article.lyx
2301     beamer-g4-mask.jpg
2302     beamer-g4.jpg
2303     beamer-icsi-logo.pdf
2304     beamer-knight1-mask.png
2305     beamer-knight1.png
2306     beamer-knight2-mask.png
2307     beamer-knight2.png
2308     beamer-knight3-mask.png
2309     beamer-knight3.png
2310     beamer-knight4-mask.png
2311     beamer-knight4.png
2312     beamerlyxexample1.lyx
2313     biblioExample.bib
2314     chess-article.lyx
2315     chessgame.lyx
2316     currency.lyx
2317     docbook_article.lyx
2318     europeCV.lyx
2319     example_lyxified.lyx
2320     example_raw.lyx
2321     iecc05.fen
2322     iecc07.fen
2323     iecc12.fen
2324     landslide.lyx
2325     listerrors.lyx
2326     listings.lyx
2327     mathed.lyx
2328     modernCV.lyx
2329     multicol.lyx
2330     noweb2lyx.lyx
2331     powerdot-example.lyx
2332     script_form.lyx
2333     simplecv.lyx
2334     splash.lyx
2335 ''')
2336
2337
2338 lib_examples_ca_files = Split('''
2339     splash.lyx
2340 ''')
2341
2342
2343 lib_examples_cs_files = Split('''
2344     splash.lyx
2345 ''')
2346
2347
2348 lib_examples_da_files = Split('''
2349     splash.lyx
2350 ''')
2351
2352
2353 lib_examples_de_files = Split('''
2354     Dezimal.lyx
2355     ItemizeBullets.lyx
2356     Lebenslauf.lyx
2357     Minipage.lyx
2358     TabellenBeispiel.lyx
2359     Waehrungen.lyx
2360     beispiel_gelyxt.lyx
2361     beispiel_roh.lyx
2362     mathed.lyx
2363     multicol.lyx
2364     splash.lyx
2365 ''')
2366
2367
2368 lib_examples_fa_files = Split('''
2369     splash.lyx
2370 ''')
2371
2372
2373 lib_examples_fr_files = Split('''
2374     AlignementDecimal.lyx
2375     simplecv.lyx
2376     ExemplesTableaux.lyx
2377     Foils.lyx
2378     ListesPuces.lyx
2379     Minipage.lyx
2380     exemple_brut.lyx
2381     exemple_lyxifie.lyx
2382     mathed.lyx
2383     multicol.lyx
2384     splash.lyx
2385 ''')
2386
2387
2388 lib_examples_es_files = Split('''
2389     ejemplo_con_lyx.lyx
2390     ejemplo_sin_lyx.lyx
2391     splash.lyx
2392 ''')
2393
2394
2395 lib_examples_eu_files = Split('''
2396     adibide_gordina.lyx
2397     adibide_lyx-atua.lyx
2398     splash.lyx
2399 ''')
2400
2401
2402 lib_examples_gl_extra_files = Split('''
2403     exemplo_bruto.lyx
2404     exemplo_lyxificado.lyx
2405     splash.lyx
2406 ''')
2407
2408
2409 lib_examples_he_files = Split('''
2410     example_lyxified.lyx
2411     example_raw.lyx
2412     splash.lyx
2413 ''')
2414
2415
2416 lib_examples_hu_files = Split('''
2417     example_lyxified.lyx
2418     example_raw.lyx
2419     splash.lyx
2420 ''')
2421
2422
2423 lib_examples_it_files = Split('''
2424     ItemizeBullets.lyx
2425     splash.lyx
2426 ''')
2427
2428
2429 lib_examples_nl_files = Split('''
2430     multicol.lyx
2431     opsommingstekens.lyx
2432     splash.lyx
2433     voorbeeld_ruw.lyx
2434     voorbeeld_verlyxt.lyx
2435 ''')
2436
2437
2438 lib_examples_pl_files = Split('''
2439     splash.lyx
2440 ''')
2441
2442
2443 lib_examples_pt_files = Split('''
2444     splash.lyx
2445 ''')
2446
2447
2448 lib_examples_ro_files = Split('''
2449     splash.lyx
2450 ''')
2451
2452
2453 lib_examples_ru_files = Split('''
2454     splash.lyx
2455 ''')
2456
2457
2458 lib_examples_sl_files = Split('''
2459     primer_lyxan.lyx
2460     primer_surov.lyx
2461     splash.lyx
2462 ''')
2463
2464
2465 lib_lyx2lyx_files = Split('''
2466     LyX.py
2467     generate_encoding_info.py
2468     lyx2lyx
2469     lyx2lyx_lang.py
2470     lyx_0_06.py
2471     lyx_0_08.py
2472     lyx_0_10.py
2473     lyx_0_12.py
2474     lyx_1_0.py
2475     lyx_1_1.py
2476     lyx_1_1_5.py
2477     lyx_1_1_6_0.py
2478     lyx_1_1_6_3.py
2479     lyx_1_2.py
2480     lyx_1_3.py
2481     lyx_1_4.py
2482     lyx_1_5.py
2483     lyx_1_6.py
2484     parser_tools.py
2485     profiling.py
2486     test_parser_tools.py
2487 ''')
2488
2489
2490 lib_lyx2lyx_extra_files = Split('''
2491     Makefile.am
2492     lyx2lyx_version.py.in
2493 ''')
2494
2495
2496 lib_layouts_files = Split('''
2497     IEEEtran.layout
2498     aa.layout
2499     aapaper.layout
2500     aastex.layout
2501     agu-dtd.layout
2502     agums.layout
2503     amsart-plain.layout
2504     amsart-seq.layout
2505     amsart.layout
2506     amsbook.layout
2507     apa.layout
2508     arab-article.layout
2509     armenian-article.layout
2510     article.layout
2511     beamer.layout
2512     book.layout
2513     broadway.layout
2514     chess.layout
2515     cl2emult.layout
2516     dinbrief.layout
2517     docbook-book.layout
2518     docbook-chapter.layout
2519     docbook-section.layout
2520     docbook.layout
2521     dtk.layout
2522     egs.layout
2523     elsart.layout
2524     entcs.layout
2525     europecv.layout
2526     extarticle.layout
2527     extbook.layout
2528     extletter.layout
2529     extreport.layout
2530     foils.layout
2531     g-brief-de.layout
2532     g-brief-en.layout
2533     g-brief2.layout
2534     heb-article.layout
2535     heb-letter.layout
2536     hollywood.layout
2537     ijmpc.layout
2538     ijmpd.layout
2539     iopart.layout
2540     isprs.layout
2541     jarticle.layout
2542     jbook.layout
2543     jgrga.layout
2544     jreport.layout
2545     jsarticle.layout
2546     jsbook.layout
2547     kluwer.layout
2548     latex8.layout
2549     letter.layout
2550     literate-article.layout
2551     literate-book.layout
2552     literate-report.layout
2553     llncs.layout
2554     ltugboat.layout
2555     manpage.layout
2556     memoir.layout
2557     moderncv.layout
2558     mwart.layout
2559     mwbk.layout
2560     mwrep.layout
2561     paper.layout
2562     powerdot.layout
2563     report.layout
2564     revtex.layout
2565     revtex4.layout
2566     scrartcl.layout
2567     scrbook.layout
2568     scrlettr.layout
2569     scrlttr2.layout
2570     scrreprt.layout
2571     seminar.layout
2572     siamltex.layout
2573     simplecv.layout
2574     slides.layout
2575     spie.layout
2576     svglobal.layout
2577     svjog.layout
2578     svprobth.layout
2579     tarticle.layout
2580     tbook.layout
2581     treport.layout
2582 ''')
2583
2584
2585 lib_layouts_inc_files = Split('''
2586     aapaper.inc
2587     agu_stdclass.inc
2588     agu_stdcounters.inc
2589     agu_stdlists.inc
2590     agu_stdsections.inc
2591     agu_stdtitle.inc
2592     aguplus.inc
2593     amsdefs.inc
2594     amsmaths-plain.inc
2595     amsmaths-seq.inc
2596     amsmaths.inc
2597     db_lyxmacros.inc
2598     db_stdcharstyles.inc
2599     db_stdclass.inc
2600     db_stdcounters.inc
2601     db_stdlayouts.inc
2602     db_stdlists.inc
2603     db_stdsections.inc
2604     db_stdstarsections.inc
2605     db_stdstruct.inc
2606     db_stdtitle.inc
2607     literate-scrap.inc
2608     lyxmacros.inc
2609     numarticle.inc
2610     numreport.inc
2611     numrevtex.inc
2612     scrclass.inc
2613     stdclass.inc
2614     stdcounters.inc
2615     stdfloats.inc
2616     stdinsets.inc
2617     stdlayouts.inc
2618     stdletter.inc
2619     stdlists.inc
2620     stdsections.inc
2621     stdstarsections.inc
2622     stdstruct.inc
2623     stdtitle.inc
2624     svjour.inc
2625     theorems.inc
2626     theorems-ams.inc
2627 ''')
2628
2629
2630 lib_layouts_module_files = Split('''
2631     endnotes.module
2632     foottoend.module
2633     hanging.module
2634     logicalmkup.module
2635     theorems-ams.module
2636     theorems-ams-withinsec.module
2637     theorems-std.module
2638     theorems-withinsec.module
2639     theorems-withinchap.module
2640     url.module
2641 ''')
2642
2643 lib_scripts_files = Split('''
2644     TeXFiles.py
2645     clean_dvi.py
2646     convertDefault.py
2647     date.py
2648     ext_copy.py
2649     fen2ascii.py
2650     fig2pdftex.py
2651     fig2pstex.py
2652     fig_copy.py
2653     layout2layout.py
2654     legacy_lyxpreview2ppm.py
2655     listerrors
2656     lyxpreview2bitmap.py
2657     lyxpreview_tools.py
2658     tex_copy.py
2659 ''')
2660
2661
2662 lib_bind_files = Split('''
2663     aqua.bind
2664     broadway.bind
2665     cua.bind
2666     cyrkeys.bind
2667     emacs.bind
2668     greekkeys.bind
2669     hollywood.bind
2670     latinkeys.bind
2671     mac.bind
2672     math.bind
2673     menus.bind
2674     sciword.bind
2675     xemacs.bind
2676 ''')
2677
2678
2679 lib_bind_fi_files = Split('''
2680     menus.bind
2681 ''')
2682
2683
2684 lib_bind_sv_files = Split('''
2685     menus.bind
2686 ''')
2687
2688
2689 lib_bind_pt_files = Split('''
2690     menus.bind
2691 ''')
2692
2693
2694 lib_bind_de_files = Split('''
2695     menus.bind
2696 ''')
2697
2698
2699 lib_commands_files = Split('''
2700     default.def
2701 ''')
2702
2703
2704 boost_extra_files = Split('''
2705     LICENSE_1_0.txt
2706     Makefile.am
2707 ''')
2708
2709
2710 boost_libs_extra_files = Split('''
2711     Makefile.am
2712     README
2713 ''')
2714
2715
2716 boost_libs_signals_extra_files = Split('''
2717     Makefile.am
2718     signals.vcproj
2719 ''')
2720
2721
2722 boost_libs_signals_src_files = Split('''
2723     connection.cpp
2724     named_slot_map.cpp
2725     signal_base.cpp
2726     slot.cpp
2727     trackable.cpp
2728 ''')
2729
2730
2731 boost_libs_signals_src_extra_files = Split('''
2732     Makefile.am
2733     pch.h
2734 ''')
2735
2736
2737 boost_libs_regex_extra_files = Split('''
2738     Makefile.am
2739     regex.vcproj
2740 ''')
2741
2742
2743 boost_libs_regex_src_files = Split('''
2744     c_regex_traits.cpp
2745     cpp_regex_traits.cpp
2746     cregex.cpp
2747     fileiter.cpp
2748     instances.cpp
2749     posix_api.cpp
2750     regex.cpp
2751     regex_debug.cpp
2752     regex_raw_buffer.cpp
2753     regex_traits_defaults.cpp
2754     w32_regex_traits.cpp
2755     wide_posix_api.cpp
2756     winstances.cpp
2757 ''')
2758
2759
2760 boost_libs_regex_src_extra_files = Split('''
2761     Makefile.am
2762     pch.h
2763 ''')
2764
2765
2766 boost_libs_filesystem_extra_files = Split('''
2767     Makefile.am
2768     filesystem.vcproj
2769 ''')
2770
2771
2772 boost_libs_filesystem_src_files = Split('''
2773     exception.cpp
2774     operations.cpp
2775     path.cpp
2776     portability.cpp
2777 ''')
2778
2779
2780 boost_libs_filesystem_src_extra_files = Split('''
2781     Makefile.am
2782     pch.h
2783 ''')
2784
2785
2786 boost_libs_iostreams_extra_files = Split('''
2787     Makefile.am
2788 ''')
2789
2790
2791 boost_libs_iostreams_src_files = Split('''
2792     file_descriptor.cpp
2793     mapped_file.cpp
2794     zlib.cpp
2795 ''')
2796
2797
2798 boost_libs_iostreams_src_extra_files = Split('''
2799     Makefile.am
2800     pch.h
2801 ''')
2802
2803
2804 development_Win32_packaging_installer = Split('''
2805     license.rtf
2806     lyx.nsi
2807     settings.nsh
2808     settings.user.nsh
2809 ''')
2810
2811
2812 development_Win32_packaging_installer_components = Split('''
2813     configure.nsh
2814     core.nsh
2815     dicts.nsh
2816     external.nsh
2817     langselect.nsh
2818     reinstall.nsh
2819     uninstall.nsh
2820     user.nsh
2821     viewer.nsh
2822 ''')
2823
2824
2825 development_Win32_packaging_installer_dialogs = Split('''
2826     external.ini
2827     langselect.ini
2828     reinstall.ini
2829     user.ini
2830     viewer.ini
2831 ''')
2832
2833
2834 development_Win32_packaging_installer_graphics = Split('''
2835     header.bmp
2836     wizard.bmp
2837 ''')
2838
2839
2840 development_Win32_packaging_installer_include = Split('''
2841     declarations.nsh
2842     detection.nsh
2843     filelists.nsh
2844     gui.nsh
2845     init.nsh
2846     lang.nsh
2847     windows.nsh
2848 ''')
2849
2850
2851 development_Win32_packaging_installer_lang = Split('''
2852     english.nsh
2853     french.nsh
2854     german.nsh
2855     italian.nsh
2856 ''')
2857