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