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