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