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