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