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