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