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