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