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