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