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