]> git.lyx.org Git - features.git/blob - development/scons/scons_manifest.py
add id.po to trunk too
[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     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     SpellBase.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     SpellBase.cpp
240     Thesaurus.cpp
241     boost.cpp
242 ''')
243
244
245 src_extra_src_files = Split('''
246     ASpell.cpp
247     Section.cpp
248     Variables.cpp
249     main.cpp
250 ''')
251
252
253 src_extra_files = Split('''
254     Makefile.am
255     pch.h
256 ''')
257
258
259 src_client_header_files = Split('''
260     Messages.h
261 ''')
262
263
264 src_client_files = Split('''
265     Messages.cpp
266     boost.cpp
267     client.cpp
268     gettext.cpp
269 ''')
270
271
272 src_client_extra_files = Split('''
273     Makefile.am
274     lyxclient.1in
275     pch.h
276 ''')
277
278
279 src_support_header_files = Split('''
280     ExceptionMessage.h
281     FileMonitor.h
282     FileName.h
283     ForkedCalls.h
284     Messages.h
285     Package.h
286     Path.h
287     RandomAccessList.h
288     SignalSlot.h
289     SignalSlotPrivate.h
290     Systemcall.h
291     Timeout.h
292     Translator.h
293     convert.h
294     copied_ptr.h
295     debug.h
296     docstream.h
297     docstring.h
298     docstring_list.h
299     environment.h
300     filetools.h
301     foreach.h
302     gettext.h
303     gzstream.h
304     lassert.h
305     limited_stack.h
306     lstrings.h
307     lyxalgo.h
308     lyxlib.h
309     lyxtime.h
310     os.h
311     os_win32.h
312     qstring_helpers.h
313     socktools.h
314     textutils.h
315     types.h
316     unicode.h
317     userinfo.h
318 ''')
319
320
321 src_support_files = Split('''
322     FileMonitor.cpp
323     FileName.cpp
324     ForkedCalls.cpp
325     Messages.cpp
326     Package.cpp
327     Path.cpp
328     SignalSlot.cpp
329     SignalSlotPrivate.cpp
330     Systemcall.cpp
331     Timeout.cpp
332     convert.cpp
333     debug.cpp
334     docstream.cpp
335     docstring.cpp
336     environment.cpp
337     filetools.cpp
338     gettext.cpp
339     gzstream.cpp
340     kill.cpp
341     lassert.cpp
342     lstrings.cpp
343     lyxtime.cpp
344     os.cpp
345     qstring_helpers.cpp
346     socktools.cpp
347     unicode.cpp
348     userinfo.cpp
349 ''')
350
351
352 src_support_extra_header_files = Split('''
353     
354 ''')
355
356
357 src_support_extra_src_files = Split('''
358     atexit.c
359     os_cygwin.cpp
360     os_unix.cpp
361     os_win32.cpp
362     strerror.c
363 ''')
364
365
366 src_support_extra_files = Split('''
367     Makefile.am
368     pch.h
369 ''')
370
371
372 src_support_tests_extra_files = Split('''
373     Makefile.am
374     boost.cpp
375     convert.cpp
376     filetools.cpp
377     lstrings.cpp
378     pch.h
379     test_convert
380     test_filetools
381     test_lstrings
382 ''')
383
384
385 src_support_tests_regfiles_extra_files = Split('''
386     convert
387     filetools
388     lstrings
389 ''')
390
391
392 src_graphics_header_files = Split('''
393     GraphicsCache.h
394     GraphicsCacheItem.h
395     GraphicsConverter.h
396     GraphicsImage.h
397     GraphicsLoader.h
398     GraphicsParams.h
399     GraphicsTypes.h
400     PreviewImage.h
401     PreviewLoader.h
402     Previews.h
403 ''')
404
405
406 src_graphics_files = Split('''
407     GraphicsCache.cpp
408     GraphicsCacheItem.cpp
409     GraphicsConverter.cpp
410     GraphicsLoader.cpp
411     GraphicsParams.cpp
412     PreviewImage.cpp
413     PreviewLoader.cpp
414     Previews.cpp
415 ''')
416
417
418 src_graphics_extra_files = Split('''
419     Makefile.am
420     pch.h
421 ''')
422
423
424 src_mathed_header_files = Split('''
425     CommandInset.h
426     InsetMath.h
427     InsetMathAMSArray.h
428     InsetMathArray.h
429     InsetMathBig.h
430     InsetMathBoldSymbol.h
431     InsetMathBox.h
432     InsetMathBrace.h
433     InsetMathCases.h
434     InsetMathChar.h
435     InsetMathColor.h
436     InsetMathComment.h
437     InsetMathDecoration.h
438     InsetMathDelim.h
439     InsetMathDiff.h
440     InsetMathDots.h
441     InsetMathEnsureMath.h
442     InsetMathEnv.h
443     InsetMathExFunc.h
444     InsetMathExInt.h
445     InsetMathFont.h
446     InsetMathFontOld.h
447     InsetMathFrac.h
448     InsetMathGrid.h
449     InsetMathHull.h
450     InsetMathKern.h
451     InsetMathLefteqn.h
452     InsetMathLim.h
453     InsetMathMatrix.h
454     InsetMathNest.h
455     InsetMathNumber.h
456     InsetMathOverset.h
457     InsetMathPar.h
458     InsetMathPhantom.h
459     InsetMathRef.h
460     InsetMathRoot.h
461     InsetMathScript.h
462     InsetMathSize.h
463     InsetMathSpace.h
464     InsetMathSpecialChar.h
465     InsetMathSplit.h
466     InsetMathSqrt.h
467     InsetMathStackrel.h
468     InsetMathString.h
469     InsetMathSubstack.h
470     InsetMathSymbol.h
471     InsetMathTabular.h
472     InsetMathUnderset.h
473     InsetMathUnknown.h
474     InsetMathXArrow.h
475     InsetMathXYMatrix.h
476     MacroTable.h
477     MathAtom.h
478     MathAutoCorrect.h
479     MathCompletionList.h
480     MathData.h
481     MathExtern.h
482     MathFactory.h
483     MathGridInfo.h
484     MathMacro.h
485     MathMacroArgument.h
486     MathMacroTemplate.h
487     MathParser.h
488     MathParser_flags.h
489     MathStream.h
490     MathSupport.h
491     ReplaceData.h
492     TextPainter.h
493 ''')
494
495
496 src_mathed_files = Split('''
497     CommandInset.cpp
498     InsetMath.cpp
499     InsetMathAMSArray.cpp
500     InsetMathArray.cpp
501     InsetMathBig.cpp
502     InsetMathBoldSymbol.cpp
503     InsetMathBox.cpp
504     InsetMathBrace.cpp
505     InsetMathCases.cpp
506     InsetMathChar.cpp
507     InsetMathColor.cpp
508     InsetMathComment.cpp
509     InsetMathDecoration.cpp
510     InsetMathDelim.cpp
511     InsetMathDiff.cpp
512     InsetMathDots.cpp
513     InsetMathEnsureMath.cpp
514     InsetMathEnv.cpp
515     InsetMathExFunc.cpp
516     InsetMathExInt.cpp
517     InsetMathFont.cpp
518     InsetMathFontOld.cpp
519     InsetMathFrac.cpp
520     InsetMathGrid.cpp
521     InsetMathHull.cpp
522     InsetMathKern.cpp
523     InsetMathLefteqn.cpp
524     InsetMathLim.cpp
525     InsetMathMatrix.cpp
526     InsetMathNest.cpp
527     InsetMathNumber.cpp
528     InsetMathOverset.cpp
529     InsetMathPar.cpp
530     InsetMathPhantom.cpp
531     InsetMathRef.cpp
532     InsetMathRoot.cpp
533     InsetMathScript.cpp
534     InsetMathSize.cpp
535     InsetMathSpace.cpp
536     InsetMathSpecialChar.cpp
537     InsetMathSplit.cpp
538     InsetMathSqrt.cpp
539     InsetMathStackrel.cpp
540     InsetMathString.cpp
541     InsetMathSubstack.cpp
542     InsetMathSymbol.cpp
543     InsetMathTabular.cpp
544     InsetMathUnderset.cpp
545     InsetMathUnknown.cpp
546     InsetMathXArrow.cpp
547     InsetMathXYMatrix.cpp
548     MacroTable.cpp
549     MathAtom.cpp
550     MathAutoCorrect.cpp
551     MathData.cpp
552     MathExtern.cpp
553     MathFactory.cpp
554     MathMacro.cpp
555     MathMacroArgument.cpp
556     MathMacroTemplate.cpp
557     MathParser.cpp
558     MathStream.cpp
559     MathSupport.cpp
560     TextPainter.cpp
561 ''')
562
563
564 src_mathed_extra_files = Split('''
565     BUGS
566     InsetFormulaMacro.cpp
567     InsetFormulaMacro.h
568     InsetMathMBox.cpp
569     InsetMathMBox.h
570     InsetMathXYArrow.cpp
571     InsetMathXYArrow.h
572     Makefile.am
573     README
574     pch.h
575     texify
576 ''')
577
578
579 src_tex2lyx_header_files = Split('''
580     Context.h
581     Font.h
582     Parser.h
583     Spacing.h
584     tex2lyx.h
585 ''')
586
587
588 src_tex2lyx_files = Split('''
589     Context.cpp
590     Font.cpp
591     Parser.cpp
592     boost.cpp
593     gettext.cpp
594     math.cpp
595     preamble.cpp
596     table.cpp
597     tex2lyx.cpp
598     text.cpp
599 ''')
600
601
602 src_tex2lyx_copied_header_files = Split('''
603     insets/InsetLayout.h
604 ''')
605
606
607 src_tex2lyx_copied_files = Split('''
608     Color.cpp
609     Counters.cpp
610     Encoding.cpp
611     FloatList.cpp
612     Floating.cpp
613     Layout.cpp
614     ModuleList.cpp
615     Lexer.cpp
616     TextClass.cpp
617     insets/InsetLayout.cpp
618     lengthcommon.cpp
619 ''')
620
621
622 src_tex2lyx_extra_files = Split('''
623     Makefile.am
624     pch.h
625     tex2lyx.1
626     test/box-color-size-space-align.tex
627     test/DummyDocument.tex
628     test/foo.eps
629     test/foo.png
630     test/test-insets.tex
631     test/test.ltx
632     test/test-structure.tex
633 ''')
634
635
636 src_frontends_header_files = Split('''
637     Application.h
638     Clipboard.h
639     FontLoader.h
640     FontMetrics.h
641     KeyModifier.h
642     KeySymbol.h
643     LyXView.h
644     Painter.h
645     Selection.h
646     WorkArea.h
647     WorkAreaManager.h
648     alert.h
649     mouse_state.h
650 ''')
651
652
653 src_frontends_files = Split('''
654     WorkAreaManager.cpp
655 ''')
656
657
658 src_frontends_extra_files = Split('''
659     Makefile.am
660     pch.h
661 ''')
662
663
664 src_frontends_controllers_extra_files = Split('''
665     Makefile.am
666     pch.h
667 ''')
668
669
670 src_frontends_controllers_tests_extra_files = Split('''
671     Makefile.am
672     biblio.cpp
673     boost.cpp
674     pch.h
675     test_biblio
676 ''')
677
678
679 src_frontends_controllers_tests_regfiles_extra_files = Split('''
680     biblio
681 ''')
682
683
684 src_frontends_qt4_header_files = Split('''
685     ButtonPolicy.h
686     Dialog.h
687     Action.h
688     BulletsModule.h
689     ButtonController.h
690     ColorCache.h
691     CustomizedWidgets.h
692     DialogView.h
693     DockView.h
694     EmptyTable.h
695     FileDialog.h
696     FindAndReplace.h
697     FloatPlacement.h
698     GuiAbout.h
699     GuiApplication.h
700     GuiBibitem.h
701     GuiBibtex.h
702     GuiBox.h
703     GuiBranches.h
704     GuiBranch.h
705     GuiChanges.h
706     GuiCharacter.h
707     GuiCharacter.h
708     GuiCitation.h
709     GuiClipboard.h
710     GuiCommandBuffer.h
711     GuiCommandEdit.h
712     GuiCompleter.h
713     GuiDelimiter.h
714     GuiDialog.h
715     GuiDocument.h
716     GuiErrorList.h
717     GuiERT.h
718     GuiExternal.h
719     GuiFloat.h
720     GuiFontExample.h
721     GuiFontLoader.h
722     GuiGraphics.h
723     GuiGraphicsUi.h
724     GuiHSpace.h
725     GuiHyperlink.h
726     GuiIdListModel.h
727     GuiImage.h
728     GuiInclude.h
729     GuiInfo.h
730     GuiKeySymbol.h
731     GuiLabel.h
732     GuiListings.h
733     GuiLog.h
734     GuiMathMatrix.h
735     GuiNomencl.h
736     GuiNote.h
737     GuiPainter.h
738     GuiParagraph.h
739     GuiPhantom.h
740     GuiPrefs.h
741     GuiPrint.h
742     GuiRef.h
743     GuiSearch.h
744     GuiSelection.h
745     GuiSelectionManager.h
746     GuiSendto.h
747     GuiSetBorder.h
748     GuiShowFile.h
749     GuiSpellchecker.h
750     GuiSymbols.h
751     GuiTabularCreate.h
752     GuiTabular.h
753     GuiTexinfo.h
754     GuiThesaurus.h
755     GuiToc.h
756     GuiToolbar.h
757     GuiView.h
758     GuiViewSource.h
759     GuiVSpace.h
760     GuiWorkArea.h
761     GuiWrap.h
762     IconPalette.h
763     InsertTableWidget.h
764     LaTeXHighlighter.h
765     LengthCombo.h
766     LyXFileDialog.h
767     Menus.h
768     PanelStack.h
769     TocModel.h
770     TocWidget.h
771     Toolbars.h
772     Validator.h
773     qt_helpers.h
774     qt_i18n.h
775 ''')
776
777
778 src_frontends_qt4_files = Split('''
779     ButtonPolicy.cpp
780     Dialog.cpp
781     Action.cpp
782     BulletsModule.cpp
783     ButtonController.cpp
784     ColorCache.cpp
785     CustomizedWidgets.cpp
786     EmptyTable.cpp
787     FindAndReplace.cpp
788     FileDialog.cpp
789     FloatPlacement.cpp
790     GuiAbout.cpp
791     GuiAlert.cpp
792     GuiApplication.cpp
793     GuiBibitem.cpp
794     GuiBibtex.cpp
795     GuiBox.cpp
796     GuiBranch.cpp
797     GuiBranches.cpp
798     GuiChanges.cpp
799     GuiCharacter.cpp
800     GuiCitation.cpp
801     GuiClipboard.cpp
802     GuiCommandBuffer.cpp
803     GuiCommandEdit.cpp
804     GuiCompleter.cpp
805     GuiDelimiter.cpp
806     GuiDialog.cpp
807     GuiDocument.cpp
808     GuiErrorList.cpp
809     GuiERT.cpp
810     GuiExternal.cpp
811     GuiFloat.cpp
812     GuiFontExample.cpp
813     GuiFontLoader.cpp
814     GuiFontMetrics.cpp
815     GuiGraphics.cpp
816     GuiHSpace.cpp
817     GuiHyperlink.cpp
818     GuiIdListModel.cpp 
819     GuiImage.cpp
820     GuiInclude.cpp
821     GuiInfo.cpp
822     GuiKeySymbol.cpp
823     GuiLabel.cpp
824     GuiListings.cpp
825     GuiLog.cpp
826     GuiMathMatrix.cpp
827     GuiNomencl.cpp
828     GuiNote.cpp
829     GuiPainter.cpp
830     GuiParagraph.cpp
831     GuiPhantom.cpp
832     GuiPrefs.cpp
833     GuiPrint.cpp
834     GuiRef.cpp
835     GuiSearch.cpp
836     GuiSelection.cpp
837     GuiSelectionManager.cpp
838     GuiSendto.cpp
839     GuiSetBorder.cpp
840     GuiShowFile.cpp
841     GuiSpellchecker.cpp
842     GuiSymbols.cpp
843     GuiTabular.cpp
844     GuiTabularCreate.cpp
845     GuiTexinfo.cpp
846     GuiThesaurus.cpp
847     GuiToc.cpp
848     GuiToolbar.cpp
849     GuiView.cpp
850     GuiViewSource.cpp
851     GuiVSpace.cpp
852     GuiWorkArea.cpp
853     GuiWrap.cpp
854     IconPalette.cpp
855     InsertTableWidget.cpp
856     LengthCombo.cpp
857     LaTeXHighlighter.cpp
858     LyXFileDialog.cpp
859     Menus.cpp
860     PanelStack.cpp
861     TocModel.cpp
862     TocWidget.cpp
863     Toolbars.cpp
864     Validator.cpp
865     qt_helpers.cpp
866 ''')
867
868
869 src_frontends_qt4_extra_files = Split('''
870     GuiFontMetrics.h
871     Makefile.am
872     README
873     pch.h
874 ''')
875
876
877 src_frontends_qt4_ui_files = Split('''
878     AboutUi.ui
879     AskForTextUi.ui
880     BibitemUi.ui
881     BiblioUi.ui
882     BibtexAddUi.ui
883     BibtexUi.ui
884     BoxUi.ui
885     BranchUi.ui
886     BranchesUi.ui
887     BulletsUi.ui
888     ChangesUi.ui
889     CharacterUi.ui
890     CitationUi.ui
891     DelimiterUi.ui
892     DocumentUi.ui
893     ERTUi.ui
894     ErrorListUi.ui
895     ExternalUi.ui
896     FindAndReplaceUi.ui
897     FloatPlacementUi.ui
898     FloatUi.ui
899     FontUi.ui
900     GraphicsUi.ui
901     HSpaceUi.ui
902     HyperlinkUi.ui
903     IncludeUi.ui
904     InfoUi.ui
905     LabelUi.ui
906     LaTeXUi.ui
907     LanguageUi.ui
908     ListingsUi.ui
909     LogUi.ui
910     MarginsUi.ui
911     MathMatrixUi.ui
912     MathsUi.ui
913     ModulesUi.ui
914     NomenclUi.ui
915     NoteUi.ui
916     NumberingUi.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_dvi.png
1363     buffer-update_pdf2.png
1364     buffer-update_ps.png
1365     buffer-view_dvi.png
1366     buffer-view_pdf2.png
1367     buffer-view_ps.png
1368     buffer-write-as.png
1369     buffer-write.png
1370     build-program.png
1371     change-accept.png
1372     change-next.png
1373     change-reject.png
1374     changes-merge.png
1375     changes-output.png
1376     changes-track.png
1377     closetab.png
1378     close-tab-group.png
1379     copy.png
1380     cut.png
1381     demote.png
1382     depth-decrement.png
1383     depth-increment.png
1384     dialog-preferences.png
1385     dialog-show-new-inset_citation.png
1386     dialog-show-new-inset_graphics.png
1387     dialog-show-new-inset_include.png
1388     dialog-show-new-inset_ref.png
1389     dialog-show_character.png
1390     dialog-show_findreplace.png
1391     dialog-show_mathdelimiter.png
1392     dialog-show_mathmatrix.png
1393     dialog-show_print.png
1394     dialog-show_spellchecker.png
1395     dialog-toggle_toc.png
1396     down.png
1397     ert-insert.png
1398     file-open.png
1399     float-insert_figure.png
1400     float-insert_table.png
1401     font-bold.png
1402     font-emph.png
1403     textstyle-apply.png
1404     font-noun.png
1405     font-sans.png
1406     footnote-insert.png
1407     href-insert.png
1408     hidetab.png
1409     index-insert.png
1410     label-insert.png
1411     layout-document.png
1412     layout-paragraph.png
1413     layout.png
1414     layout_Description.png
1415     layout_Enumerate.png
1416     layout_Itemize.png
1417     layout_List.png
1418     layout_LyX-Code.png
1419     layout_Scrap.png
1420     layout_Section.png
1421     lyx-quit.png
1422     lyx.png
1423     vc-check-in.png
1424     vc-check-out.png
1425     dialog-show_vclog.png
1426     vc-register.png
1427     vc-revert.png
1428     marginalnote-insert.png
1429     math-display.png
1430     math-macro-add-greedy-optional-param.png
1431     math-macro-add-optional-param.png
1432     math-macro-add-param.png
1433     math-macro-append-greedy-param.png
1434     math-macro-make-nonoptional.png
1435     math-macro-make-optional.png
1436     math-macro-remove-greedy-param.png
1437     math-macro-remove-optional-param.png
1438     math-macro-remove-param.png
1439     math-macro_newmacroname_newcommand.png
1440     math-matrix.png
1441     math-mode.png
1442     math-subscript.png
1443     math-superscript.png
1444     nomencl-insert.png
1445     note-insert.png
1446     note-next.png
1447     paste.png
1448     promote.png
1449     psnfss1.png
1450     psnfss2.png
1451     psnfss3.png
1452     psnfss4.png
1453     redo.png
1454     reload.png
1455     split-view_horizontal.png
1456     split-view_vertical.png
1457     standard.png
1458     tabular-feature_m-align-center.png
1459     tabular-feature_m-align-left.png
1460     tabular-feature_m-align-right.png
1461     tabular-feature_append-column.png
1462     tabular-feature_append-row.png
1463     tabular-feature_delete-column.png
1464     tabular-feature_delete-row.png
1465     tabular-feature_multicolumn.png
1466     tabular-feature_set-all-lines.png
1467     tabular-feature_set-border-lines.png
1468     tabular-feature_set-longtabular.png
1469     tabular-feature_set-rotate-cell.png
1470     tabular-feature_set-rotate-tabular.png
1471     tabular-feature_toggle-line-bottom.png
1472     tabular-feature_toggle-line-left.png
1473     tabular-feature_toggle-line-right.png
1474     tabular-feature_toggle-line-top.png
1475     tabular-feature_toggle-rotate-cell.png
1476     tabular-feature_toggle-rotate-tabular.png
1477     tabular-feature_unset-all-lines.png
1478     tabular-feature_m-valign-bottom.png
1479     tabular-feature_m-valign-middle.png
1480     tabular-feature_m-valign-top.png
1481     tabular-insert.png
1482     thesaurus-entry.png
1483     toolbar-toggle_math.png
1484     toolbar-toggle_math_panels.png
1485     toolbar-toggle_table.png
1486     undo.png
1487     unknown.png
1488     up.png
1489     url-insert.png
1490 ''')
1491
1492
1493 lib_images_extra_files = Split('''
1494     README
1495     font-smallcaps.png
1496 ''')
1497
1498
1499 lib_images_math_files = Split('''
1500     Bbbk.png
1501     Finv.png
1502     Game.png
1503     Im.png
1504     Lleftarrow.png
1505     Lsh.png
1506     Re.png
1507     Rrightarrow.png
1508     Rsh.png
1509     Vvdash.png
1510     acute.png
1511     aleph.png
1512     alpha.png
1513     amalg.png
1514     angle.png
1515     approx.png
1516     approxeq.png
1517     asymp.png
1518     backepsilon.png
1519     backprime.png
1520     backsim.png
1521     backsimeq.png
1522     backslash.png
1523     bar.png
1524     bars.png
1525     barwedge.png
1526     because.png
1527     beta.png
1528     beth.png
1529     between.png
1530     bigcap.png
1531     bigcirc.png
1532     bigcup.png
1533     bigodot.png
1534     bigoplus.png
1535     bigotimes.png
1536     bigsqcup.png
1537     bigstar.png
1538     bigtriangledown.png
1539     bigtriangleup.png
1540     biguplus.png
1541     bigvee.png
1542     bigwedge.png
1543     blacklozenge.png
1544     blacksquare.png
1545     blacktriangle.png
1546     blacktriangledown.png
1547     blacktriangleleft.png
1548     blacktriangleright.png
1549     bot.png
1550     bowtie.png
1551     boxdot.png
1552     boxminus.png
1553     boxplus.png
1554     boxtimes.png
1555     breve.png
1556     bullet.png
1557     bumpeq.png
1558     bumpeq2.png
1559     cap.png
1560     cap2.png
1561     cases.png
1562     cdot.png
1563     cdots.png
1564     centerdot.png
1565     check.png
1566     chi.png
1567     circ.png
1568     circeq.png
1569     circlearrowleft.png
1570     circlearrowright.png
1571     circledS.png
1572     circledast.png
1573     circledcirc.png
1574     circleddash.png
1575     clubsuit.png
1576     complement.png
1577     cong.png
1578     coprod.png
1579     cup.png
1580     cup2.png
1581     curlyeqprec.png
1582     curlyeqsucc.png
1583     curlyvee.png
1584     curlywedge.png
1585     curvearrowleft.png
1586     curvearrowright.png
1587     dagger.png
1588     daleth.png
1589     dashleftarrow.png
1590     dashrightarrow.png
1591     dashv.png
1592     ddagger.png
1593     ddot.png
1594     ddots.png
1595     delim.png
1596     delta.png
1597     delta2.png
1598     diagdown.png
1599     diagup.png
1600     diamond.png
1601     diamondsuit.png
1602     digamma.png
1603     div.png
1604     divideontimes.png
1605     dot.png
1606     doteq.png
1607     doteqdot.png
1608     dotplus.png
1609     dotsint.png
1610     dotsintop.png
1611     doublebarwedge.png
1612     downarrow.png
1613     downarrow2.png
1614     downdownarrows.png
1615     downharpoonleft.png
1616     downharpoonright.png
1617     ell.png
1618     empty.png
1619     emptyset.png
1620     epsilon.png
1621     eqcirc.png
1622     eqslantgtr.png
1623     eqslantless.png
1624     equation.png
1625     equiv.png
1626     eta.png
1627     eth.png
1628     exists.png
1629     fallingdotseq.png
1630     fint.png
1631     fintop.png
1632     flat.png
1633     font.png
1634     forall.png
1635     frac-square.png
1636     frac.png
1637     frown.png
1638     functions.png
1639     gamma.png
1640     gamma2.png
1641     geq.png
1642     geqq.png
1643     geqslant.png
1644     gg.png
1645     ggg.png
1646     gimel.png
1647     gnapprox.png
1648     gneq.png
1649     gneqq.png
1650     gnsim.png
1651     grave.png
1652     gtrapprox.png
1653     gtrdot.png
1654     gtreqless.png
1655     gtreqqless.png
1656     gtrless.png
1657     gtrsim.png
1658     gvertneqq.png
1659     hat.png
1660     hbar.png
1661     heartsuit.png
1662     hookleftarrow.png
1663     hookrightarrow.png
1664     hphantom.png
1665     hslash.png
1666     iiiint.png
1667     iiiintop.png
1668     iiint.png
1669     iiintop.png
1670     iint.png
1671     iintop.png
1672     imath.png
1673     in.png
1674     infty.png
1675     int.png
1676     intercal.png
1677     intop.png
1678     iota.png
1679     jmath.png
1680     kappa.png
1681     lambda.png
1682     lambda2.png
1683     landdownint.png
1684     landdownintop.png
1685     landupint.png
1686     landupintop.png
1687     langle.png
1688     lbrace.png
1689     lbrace_rbrace.png
1690     lbracket.png
1691     lbracket_rbracket.png
1692     lceil.png
1693     lceil_rceil.png
1694     ldots.png
1695     leftarrow.png
1696     leftarrow2.png
1697     leftarrowtail.png
1698     leftharpoondown.png
1699     leftharpoonup.png
1700     leftleftarrows.png
1701     leftrightarrow.png
1702     leftrightarrow2.png
1703     leftrightarrows.png
1704     leftrightharpoons.png
1705     leftrightsquigarrow.png
1706     leftthreetimes.png
1707     leq.png
1708     leqq.png
1709     leqslant.png
1710     lessapprox.png
1711     lessdot.png
1712     lesseqgtr.png
1713     lesseqqgtr.png
1714     lessgtr.png
1715     lesssim.png
1716     lfloor.png
1717     lfloor_rfloor.png
1718     ll.png
1719     llcorner.png
1720     lll.png
1721     lnapprox.png
1722     lneq.png
1723     lneqq.png
1724     lnsim.png
1725     longleftarrow.png
1726     longleftarrow2.png
1727     longleftrightarrow.png
1728     longleftrightarrow2.png
1729     longmapsto.png
1730     longrightarrow.png
1731     longrightarrow2.png
1732     looparrowleft.png
1733     looparrowright.png
1734     lozenge.png
1735     lparen.png
1736     lparen_rparen.png
1737     lrcorner.png
1738     ltimes.png
1739     lvertneqq.png
1740     mapsto.png
1741     mathbb_C.png
1742     mathbb_H.png
1743     mathbb_N.png
1744     mathbb_Q.png
1745     mathbb_R.png
1746     mathbb_Z.png
1747     mathcal_F.png
1748     mathcal_H.png
1749     mathcal_L.png
1750     mathcal_O.png
1751     mathcircumflex.png
1752     mathrm_T.png
1753     matrix.png
1754     measuredangle.png
1755     mho.png
1756     mid.png
1757     models.png
1758     mp.png
1759     mu.png
1760     multimap.png
1761     nabla.png
1762     natural.png
1763     ncong.png
1764     nearrow.png
1765     neg.png
1766     neq.png
1767     nexists.png
1768     ngeq.png
1769     ngeqq.png
1770     ngeqslant.png
1771     ngtr.png
1772     ni.png
1773     nleftarrow.png
1774     nleftarrow2.png
1775     nleftrightarrow.png
1776     nleftrightarrow2.png
1777     nleq.png
1778     nleqq.png
1779     nleqslant.png
1780     nless.png
1781     nmid.png
1782     notin.png
1783     nparallel.png
1784     nprec.png
1785     npreceq.png
1786     nrightarrow.png
1787     nrightarrow2.png
1788     nshortmid.png
1789     nshortparallel.png
1790     nsim.png
1791     nsubseteq.png
1792     nsucc.png
1793     nsucceq.png
1794     nsupseteq.png
1795     nsupseteqq.png
1796     ntriangleleft.png
1797     ntrianglelefteq.png
1798     ntriangleright.png
1799     ntrianglerighteq.png
1800     nu.png
1801     nvdash.png
1802     nvdash2.png
1803     nvdash3.png
1804     nwarrow.png
1805     odot.png
1806     oiint.png
1807     oiintop.png
1808     oint.png
1809     ointclockwise.png
1810     ointclockwiseop.png
1811     ointctrclockwise.png
1812     ointctrclockwiseop.png
1813     ointop.png
1814     omega.png
1815     omega2.png
1816     ominus.png
1817     oplus.png
1818     oslash.png
1819     otimes.png
1820     overbrace.png
1821     overleftarrow.png
1822     overleftrightarrow.png
1823     overline.png
1824     overrightarrow.png
1825     overset.png
1826     parallel.png
1827     partial.png
1828     perp.png
1829     phantom.png
1830     phi.png
1831     phi2.png
1832     pi.png
1833     pi2.png
1834     pitchfork.png
1835     pm.png
1836     prec.png
1837     precapprox.png
1838     preccurlyeq.png
1839     preceq.png
1840     precnapprox.png
1841     precnsim.png
1842     precsim.png
1843     prime.png
1844     prod.png
1845     propto.png
1846     psi.png
1847     psi2.png
1848     rangle.png
1849     rbrace.png
1850     rbracket.png
1851     rceil.png
1852     rfloor.png
1853     rho.png
1854     rightarrow.png
1855     rightarrow2.png
1856     rightarrowtail.png
1857     rightharpoondown.png
1858     rightharpoonup.png
1859     rightleftarrows.png
1860     rightleftharpoons.png
1861     rightrightarrows.png
1862     rightsquigarrow.png
1863     rightthreetimes.png
1864     risingdotseq.png
1865     root.png
1866     rparen.png
1867     rtimes.png
1868     searrow.png
1869     setminus.png
1870     sharp.png
1871     shortmid.png
1872     shortparallel.png
1873     sigma.png
1874     sigma2.png
1875     sim.png
1876     simeq.png
1877     slash.png
1878     smallfrown.png
1879     smallsetminus.png
1880     smallsmile.png
1881     smile.png
1882     space.png
1883     spadesuit.png
1884     sphericalangle.png
1885     sqcap.png
1886     sqcup.png
1887     sqiint.png
1888     sqiintop.png
1889     sqint.png
1890     sqintop.png
1891     sqrt-square.png
1892     sqrt.png
1893     sqsubset.png
1894     sqsubseteq.png
1895     sqsupset.png
1896     sqsupseteq.png
1897     square.png
1898     star.png
1899     style.png
1900     style.png
1901     sub.png
1902     subset.png
1903     subset2.png
1904     subseteq.png
1905     subseteqq.png
1906     subsetneq.png
1907     subsetneqq.png
1908     succ.png
1909     succapprox.png
1910     succcurlyeq.png
1911     succeq.png
1912     succnapprox.png
1913     succnsim.png
1914     succsim.png
1915     sum.png
1916     super.png
1917     supset.png
1918     supset2.png
1919     supseteq.png
1920     supseteqq.png
1921     supsetneq.png
1922     supsetneqq.png
1923     surd.png
1924     swarrow.png
1925     tau.png
1926     textrm_AA.png
1927     textrm_O.png
1928     therefore.png
1929     theta.png
1930     theta2.png
1931     thickapprox.png
1932     thicksim.png
1933     tilde.png
1934     times.png
1935     top.png
1936     triangle.png
1937     triangledown.png
1938     triangleleft.png
1939     trianglelefteq.png
1940     triangleq.png
1941     triangleright.png
1942     trianglerighteq.png
1943     twoheadleftarrow.png
1944     twoheadrightarrow.png
1945     ulcorner.png
1946     underbrace.png
1947     underleftarrow.png
1948     underleftrightarrow.png
1949     underline.png
1950     underrightarrow.png
1951     underscore.png
1952     underset.png
1953     uparrow.png
1954     uparrow2.png
1955     updownarrow.png
1956     updownarrow2.png
1957     upharpoonleft.png
1958     upharpoonright.png
1959     uplus.png
1960     upsilon.png
1961     upsilon2.png
1962     upuparrows.png
1963     urcorner.png
1964     varepsilon.png
1965     varkappa.png
1966     varnothing.png
1967     varphi.png
1968     varpi.png
1969     varpropto.png
1970     varrho.png
1971     varsigma.png
1972     varsubsetneq.png
1973     varsubsetneqq.png
1974     varsupsetneq.png
1975     varsupsetneqq.png
1976     vartheta.png
1977     vartriangle.png
1978     vartriangleleft.png
1979     vartriangleright.png
1980     vdash.png
1981     vdash2.png
1982     vdash3.png
1983     vdots.png
1984     vec.png
1985     vee.png
1986     veebar.png
1987     vert.png
1988     vert2.png
1989     vphantom.png
1990     wedge.png
1991     widehat.png
1992     widetilde.png
1993     wp.png
1994     wr.png
1995     xi.png
1996     xi2.png
1997     zeta.png
1998 ''')
1999
2000
2001 lib_images_math_extra_files = Split('''
2002     ams_arrows.png
2003     ams_misc.png
2004     ams_nrel.png
2005     ams_ops.png
2006     ams_rel.png
2007     arrows.png
2008     bop.png
2009     brel.png
2010     deco.png
2011     deco.png
2012     delim.png
2013     delim0.png
2014     delim1.png
2015     dots.png
2016     font.png
2017     functions.png
2018     greek.png
2019     misc.png
2020     varsz.png
2021 ''')
2022
2023
2024 lib_images_commands_files = Split('''
2025 ''')
2026
2027
2028 lib_images_attic_extra_files = Split('''
2029     dialog-show_mathpanel.png
2030 ''')
2031
2032
2033 lib_tex_files = Split('''
2034     broadway.cls
2035     hollywood.cls
2036     lyxchess.sty
2037     lyxskak.sty
2038     revtex.cls
2039 ''')
2040
2041
2042 lib_doc_files = Split('''
2043     Customization.lyx
2044     DocStyle.lyx
2045     DummyDocument1.lyx
2046     DummyDocument2.lyx
2047     DummyTextDocument.txt
2048     EmbeddedObjects.lyx
2049     Extended.lyx
2050     Formula-numbering.lyx
2051     Intro.lyx
2052     LaTeXConfig.lyx
2053     LFUNs.lyx
2054     Math.lyx
2055     Shortcuts.lyx
2056     Tutorial.lyx
2057     UserGuide.lyx
2058 ''')
2059
2060
2061 lib_doc_biblio_files = Split('''
2062     alphadin.bst
2063     LyXDocs.bib
2064 ''')
2065
2066
2067 lib_doc_clipart_files = Split('''
2068     Abstract.pdf
2069     BoxInsetDefaultQt4.png
2070     ChangesToolbar.png
2071     ChildDocumentQt4.png
2072     CommentNoteImageQt4.png
2073     ERT.png
2074     ExternalMaterialQt4.png
2075     ExtraToolbar.png
2076     GreyedOutNoteImageQt4.png
2077     LaTeX.png
2078     LyXNoteImageQt4.png
2079     SpaceMarker.png
2080     StandardToolbar.png
2081     ToolbarEnvBox.png
2082     endnotes.pdf
2083     escher-lsd.eps
2084     floatQt4.png
2085     footnoteQt4.png
2086     labelQt4.png
2087     macrobox.png
2088     MacroToolbar.png
2089     macrouse.png
2090     mbox.png
2091     mobius.eps
2092     platypus.eps
2093     referenceQt4.png
2094     ViewToolbar.png
2095     with_fntright.pdf
2096     without_fntright.pdf
2097 ''')
2098
2099
2100 lib_doc_extra_files = Split('''
2101     Makefile.am
2102     README.Documentation
2103 ''')
2104
2105
2106 lib_doc_ca_files = Split('''
2107     Intro.lyx
2108 ''')
2109
2110
2111 lib_doc_cs_files = Split('''
2112     Tutorial.lyx
2113 ''')
2114
2115
2116 lib_doc_de_files = Split('''
2117     Customization.lyx
2118     DummyDocument1.lyx
2119     DummyDocument2.lyx
2120     DummyTextDocument.txt
2121     EmbeddedObjects.lyx
2122     Extended.lyx
2123     Formelnummerierung.lyx
2124     Intro.lyx
2125     Math.lyx
2126     Shortcuts.lyx
2127     Tutorial.lyx
2128     UserGuide.lyx
2129 ''')
2130
2131
2132 lib_doc_de_clipart_files = Split('''
2133     ERT.png
2134     ExternesMaterialQt4.png
2135     FussnoteQt4.png
2136     GleitobjektQt4.png
2137     GrauschriftNotizQt4.png
2138     KommentarQt4.png
2139     LyXNotizQt4.png
2140     Marke.png
2141     Querverweis.png
2142     StandardBoxQt4.png
2143     UnterdokumentQt4.png
2144 ''')
2145
2146
2147 lib_doc_da_files = Split('''
2148     Intro.lyx
2149 ''')
2150
2151
2152 lib_doc_es_files = Split('''
2153     Customization.lyx
2154     DocumentoPostizo1.lyx
2155     DocumentoPostizo2.lyx
2156     DocumentoTextoPostizo.txt
2157     EmbeddedObjects.lyx
2158     Extended.lyx
2159     Formula-numbering.lyx
2160     Intro.lyx
2161     Math.lyx
2162     Shortcuts.lyx
2163     Tutorial.lyx
2164     UserGuide.lyx
2165 ''')
2166
2167
2168 lib_doc_es_clipart_files = Split('''
2169     ComentNotaImagenQt4.png
2170     CuadroMinipagQt4.png
2171     DocumentoHijoQt4.png
2172     GrisNotaImagenQt4.png
2173     MaterialExternoQt4.png
2174     NotaLyXImagenQt4.png
2175     Resumen.pdf
2176     es_ERT.png
2177     es_ToolbarEnvBox.png
2178     etiquetaQt4.png
2179     flotanteQt4.png
2180     notapieQt4.png
2181     referenciaQt4.png
2182 ''')
2183
2184
2185 lib_doc_eu_files = Split('''
2186     Customization.lyx
2187     Extended.lyx
2188     Intro.lyx
2189     Tutorial.lyx
2190     UserGuide.lyx
2191 ''')
2192
2193
2194 lib_doc_fr_files = Split('''
2195     Customization.lyx
2196     DocumentBidon1.lyx
2197     DocumentBidon2.lyx
2198     DocumentTexteBidon.txt
2199     EmbeddedObjects.lyx
2200     Extended.lyx
2201     Formula-numbering.lyx
2202     Intro.lyx
2203     Math.lyx
2204     Tutorial.lyx
2205     UserGuide.lyx
2206 ''')
2207
2208
2209 lib_doc_fr_clipart_files = Split('''
2210     BoxInsetDefaultQt4.png
2211     ChildDocumentQt4.png
2212     CommentNoteImageQt4.png
2213     GreyedOutNoteImageQt4.png
2214     LyXNoteImageQt4.png
2215     floatQt4.png
2216     footnoteQt4.png
2217     labelQt4.png
2218 ''')
2219
2220
2221 lib_doc_gl_files = Split('''
2222     Intro.lyx
2223     Tutorial.lyx
2224 ''')
2225
2226
2227 lib_doc_he_files = Split('''
2228     Intro.lyx
2229     Tutorial.lyx
2230 ''')
2231
2232
2233 lib_doc_hu_files = Split('''
2234     Intro.lyx
2235     Tutorial.lyx
2236 ''')
2237
2238
2239 lib_doc_it_files = Split('''
2240     Customization.lyx
2241     Intro.lyx
2242     Tutorial.lyx
2243     UserGuide.lyx
2244 ''')
2245
2246
2247 lib_doc_it_clipart_files = Split('''
2248     it_footnoteQt4.png
2249     it_referenceQt4.png
2250 ''')
2251
2252
2253 lib_doc_ja_files = Split('''
2254     Extended.lyx
2255     Intro.lyx
2256     LaTeXConfig.lyx
2257     Shortcuts.lyx
2258     Tutorial.lyx
2259     UserGuide.lyx
2260 ''')
2261
2262
2263 lib_doc_ja_clipart_files = Split('''
2264     floatQt4.png
2265     footnoteQt4.png
2266     referenceQt4.png
2267     ERT.png
2268     ToolbarEnvBox.png
2269 ''')
2270
2271
2272 lib_doc_nb_files = Split('''
2273     Intro.lyx
2274 ''')
2275
2276
2277 lib_doc_nl_files = Split('''
2278     Intro.lyx
2279     Tutorial.lyx
2280 ''')
2281
2282
2283 lib_doc_pl_files = Split('''
2284     Extended.lyx
2285     Intro.lyx
2286     Tutorial.lyx
2287 ''')
2288
2289
2290 lib_doc_pt_files = Split('''
2291     Intro.lyx
2292     Tutorial.lyx
2293 ''')
2294
2295
2296 lib_doc_ro_files = Split('''
2297     Intro.lyx
2298 ''')
2299
2300
2301 lib_doc_ru_files = Split('''
2302     Intro.lyx
2303     Tutorial.lyx
2304 ''')
2305
2306
2307 lib_doc_sl_files = Split('''
2308     Intro.lyx
2309     Tutorial.lyx
2310 ''')
2311
2312
2313 lib_doc_sk_files = Split('''
2314     Tutorial.lyx
2315     UserGuide.lyx
2316 ''')
2317
2318
2319 lib_doc_sv_files = Split('''
2320     Intro.lyx
2321     Tutorial.lyx
2322 ''')
2323
2324
2325 lib_doc_uk_files = Split('''
2326     Intro.lyx
2327 ''')
2328
2329
2330 lib_doc_uk_clipart_files = Split('''
2331     FootnoteQT4.png
2332 ''')
2333
2334
2335 lib_examples_files = Split('''
2336     aa_sample.lyx
2337     aas_sample.lyx
2338     achemso.lyx
2339     addressExample.adr
2340     amsart-test.lyx
2341     amsbook-test.lyx
2342     armenian-article.lyx
2343     beamer-g4-mask.jpg
2344     beamer-g4.jpg
2345     beamer-icsi-logo.pdf
2346     beamer-knight1-mask.png
2347     beamer-knight1.png
2348     beamer-knight2-mask.png
2349     beamer-knight2.png
2350     beamer-knight3-mask.png
2351     beamer-knight3.png
2352     beamer-knight4-mask.png
2353     beamer-knight4.png
2354     beamerlyxexample1.lyx
2355     biblioExample.bib
2356     Braille.lyx
2357     chess-article.lyx
2358     chessgame.lyx
2359     CV-image.eps
2360     CV-image.png
2361     docbook_article.lyx
2362     europeCV.lyx
2363     example_lyxified.lyx
2364     example_raw.lyx
2365     Foils.lyx
2366     iecc05.fen
2367     iecc07.fen
2368     iecc12.fen
2369     ItemizeBullets.lyx
2370     landslide.lyx
2371     linguistics.lyx
2372     listerrors.lyx
2373     Literate.lyx
2374     modernCV.lyx
2375     multicol.lyx
2376     noweb2lyx.lyx
2377     powerdot-example.lyx
2378     recipebook.lyx
2379     script_form.lyx
2380     seminar.lyx
2381     serial_letter1.lyx
2382     serial_letter2.lyx
2383     serial_letter3.lyx
2384     simplecv.lyx
2385     splash.lyx
2386     xyfigure.png
2387     xypic.lyx
2388 ''')
2389
2390
2391 lib_examples_ca_files = Split('''
2392     ItemizeBullets.lyx
2393     mathed.lyx
2394     splash.lyx
2395 ''')
2396
2397
2398 lib_examples_cs_files = Split('''
2399     splash.lyx
2400 ''')
2401
2402
2403 lib_examples_da_files = Split('''
2404     splash.lyx
2405 ''')
2406
2407
2408 lib_examples_de_files = Split('''
2409     beispiel_gelyxt.lyx
2410     beispiel_roh.lyx
2411     Braille.lyx
2412     Dezimal.lyx
2413     ItemizeBullets.lyx
2414     Lebenslauf.lyx
2415     linguistics.lyx
2416     multicol.lyx
2417     serienbrief1.lyx
2418     serienbrief2.lyx
2419     serienbrief3.lyx
2420     splash.lyx
2421 ''')
2422
2423
2424 lib_examples_fa_files = Split('''
2425     splash.lyx
2426 ''')
2427
2428
2429 lib_examples_fr_files = Split('''
2430     AlignementDecimal.lyx
2431     Foils.lyx
2432     ListesPuces.lyx
2433     exemple_brut.lyx
2434     exemple_lyxifie.lyx
2435     multicol.lyx
2436     simplecv.lyx
2437     splash.lyx
2438 ''')
2439
2440
2441 lib_examples_es_files = Split('''
2442     Braille.lyx
2443     ejemplo_con_lyx.lyx
2444     ejemplo_sin_lyx.lyx
2445     ItemizeBullets.lyx
2446     linguistics.lyx
2447     multicol.lyx
2448     splash.lyx
2449 ''')
2450
2451
2452 lib_examples_eu_files = Split('''
2453     adibide_gordina.lyx
2454     adibide_lyx-atua.lyx
2455     splash.lyx
2456 ''')
2457
2458
2459 lib_examples_gl_files = Split('''
2460     exemplo_bruto.lyx
2461     exemplo_lyxificado.lyx
2462     splash.lyx
2463 ''')
2464
2465
2466 lib_examples_he_files = Split('''
2467     example_lyxified.lyx
2468     example_raw.lyx
2469     splash.lyx
2470 ''')
2471
2472
2473 lib_examples_hu_files = Split('''
2474     example_lyxified.lyx
2475     example_raw.lyx
2476     splash.lyx
2477 ''')
2478
2479
2480 lib_examples_id_files = Split('''
2481     splash.lyx
2482 ''')
2483
2484
2485 lib_examples_it_files = Split('''
2486     ItemizeBullets.lyx
2487     splash.lyx
2488 ''')
2489
2490
2491 lib_examples_ja_files = Split('''
2492     splash.lyx
2493 ''')
2494
2495
2496 lib_examples_nl_files = Split('''
2497     multicol.lyx
2498     opsommingstekens.lyx
2499     splash.lyx
2500     voorbeeld_ruw.lyx
2501     voorbeeld_verlyxt.lyx
2502 ''')
2503
2504
2505 lib_examples_pl_files = Split('''
2506     splash.lyx
2507 ''')
2508
2509
2510 lib_examples_pt_files = Split('''
2511     splash.lyx
2512 ''')
2513
2514
2515 lib_examples_ro_files = Split('''
2516     splash.lyx
2517 ''')
2518
2519
2520 lib_examples_ru_files = Split('''
2521     splash.lyx
2522 ''')
2523
2524
2525 lib_examples_sl_files = Split('''
2526     primer_lyxan.lyx
2527     primer_surov.lyx
2528     splash.lyx
2529 ''')
2530
2531
2532 lib_examples_uk_files = Split('''
2533     splash.lyx
2534 ''')
2535
2536
2537 lib_lyx2lyx_files = Split('''
2538     LyX.py
2539     generate_encoding_info.py
2540     lyx2lyx
2541     lyx2lyx_lang.py
2542     lyx_0_06.py
2543     lyx_0_08.py
2544     lyx_0_10.py
2545     lyx_0_12.py
2546     lyx_1_0.py
2547     lyx_1_1.py
2548     lyx_1_1_5.py
2549     lyx_1_1_6_0.py
2550     lyx_1_1_6_3.py
2551     lyx_1_2.py
2552     lyx_1_3.py
2553     lyx_1_4.py
2554     lyx_1_5.py
2555     lyx_1_6.py
2556     lyx_2_0.py
2557     parser_tools.py
2558     profiling.py
2559     test_parser_tools.py
2560 ''')
2561
2562
2563 lib_lyx2lyx_extra_files = Split('''
2564     Makefile.am
2565     lyx2lyx_version.py.in
2566 ''')
2567
2568
2569 lib_layouts_files = Split('''
2570     aa.layout
2571     aapaper.layout
2572     aastex.layout
2573     achemso.layout
2574     acmsiggraph.layout
2575     agu-dtd.layout
2576     agums.layout
2577     amsart.layout
2578     amsbook.layout
2579     apa.layout
2580     arab-article.layout
2581     armenian-article.layout
2582     article.layout
2583     article-beamer.layout
2584     beamer.layout
2585     book.layout
2586     broadway.layout
2587     chess.layout
2588     cl2emult.layout
2589     dinbrief.layout
2590     docbook-book.layout
2591     docbook-chapter.layout
2592     docbook-section.layout
2593     docbook.layout
2594     dtk.layout
2595     egs.layout
2596     elsart.layout
2597     elsarticle.layout
2598     entcs.layout
2599     europecv.layout
2600     extarticle.layout
2601     extbook.layout
2602     extletter.layout
2603     extreport.layout
2604     foils.layout
2605     g-brief-de.layout
2606     g-brief-en.layout
2607     g-brief2.layout
2608     heb-article.layout
2609     heb-letter.layout
2610     hollywood.layout
2611     IEEEtran.layout
2612     ijmpc.layout
2613     ijmpd.layout
2614     iopart.layout
2615     isprs.layout
2616     jarticle.layout
2617     jbook.layout
2618     jgrga.layout
2619     jreport.layout
2620     jsarticle.layout
2621     jsbook.layout
2622     jss.layout
2623     kluwer.layout
2624     latex8.layout
2625     letter.layout
2626     literate-article.layout
2627     literate-book.layout
2628     literate-report.layout
2629     llncs.layout
2630     ltugboat.layout
2631     manpage.layout
2632     memoir.layout
2633     moderncv.layout
2634     mwart.layout
2635     mwbk.layout
2636     mwrep.layout
2637     paper.layout
2638     powerdot.layout
2639     recipebook.layout
2640     report.layout
2641     revtex.layout
2642     revtex4.layout
2643     scrartcl.layout
2644     scrarticle-beamer.layout
2645     scrbook.layout
2646     scrlettr.layout
2647     scrlttr2.layout
2648     scrreprt.layout
2649     seminar.layout
2650     siamltex.layout
2651     sigplanconf.layout
2652     simplecv.layout
2653     singlecol.layout
2654     slides.layout
2655     spie.layout
2656     svglobal.layout
2657     svglobal3.layout
2658     svjog.layout
2659     svprobth.layout
2660     tarticle.layout
2661     tbook.layout
2662     treport.layout
2663 ''')
2664
2665
2666 lib_layouts_inc_files = Split('''
2667     aapaper.inc
2668     agu_stdclass.inc
2669     agu_stdcounters.inc
2670     agu_stdlists.inc
2671     agu_stdsections.inc
2672     agu_stdtitle.inc
2673     aguplus.inc
2674     amsdefs.inc
2675     db_lyxmacros.inc
2676     db_stdcharstyles.inc
2677     db_stdclass.inc
2678     db_stdcounters.inc
2679     db_stdlayouts.inc
2680     db_stdlists.inc
2681     db_stdsections.inc
2682     db_stdstarsections.inc
2683     db_stdstruct.inc
2684     db_stdtitle.inc
2685     literate-scrap.inc
2686     lyxmacros.inc
2687     numarticle.inc
2688     numreport.inc
2689     numrevtex.inc
2690     scrclass.inc
2691     stdcharstyles.inc
2692     stdclass.inc
2693     stdcounters.inc
2694     stdcustom.inc
2695     stdfloats.inc
2696     stdinsets.inc
2697     stdlayouts.inc
2698     stdletter.inc
2699     stdlists.inc
2700     stdsections.inc
2701     stdstarsections.inc
2702     stdstruct.inc
2703     stdtitle.inc
2704     svjour.inc
2705     theorems.inc
2706     theorems-ams.inc
2707     theorems-order.inc
2708     theorems-proof.inc
2709     theorems-starred.inc
2710     theorems-starred-equivalents.inc
2711 ''')
2712
2713
2714 lib_layouts_module_files = Split('''
2715     braille.module
2716     endnotes.module
2717     foottoend.module
2718     hanging.module
2719     linguistics.module
2720     logicalmkup.module
2721     minimalistic.module
2722     theorems-ams-extended.module
2723     theorems-ams.module
2724     theorems-chap.module
2725     theorems-sec.module
2726     theorems-starred.module
2727     theorems-std.module
2728 ''')
2729
2730 lib_scripts_files = Split('''
2731     TeXFiles.py
2732     clean_dvi.py
2733     convertDefault.py
2734     csv2lyx.py
2735     date.py
2736     ext_copy.py
2737     fen2ascii.py
2738     fig2pdftex.py
2739     fig2pstex.py
2740     fig_copy.py
2741     layout2layout.py
2742     legacy_lyxpreview2ppm.py
2743     listerrors
2744     lyxpreview2bitmap.py
2745     lyxpreview-platex2bitmap.py
2746     lyxpreview_tools.py
2747     tex_copy.py
2748 ''')
2749
2750
2751 lib_bind_files = Split('''
2752     aqua.bind
2753     broadway.bind
2754     cua.bind
2755     cyrkeys.bind
2756     emacs.bind
2757     greekkeys.bind
2758     hollywood.bind
2759     latinkeys.bind
2760     mac.bind
2761     math.bind
2762     menus.bind
2763     sciword.bind
2764     site.bind
2765     xemacs.bind
2766 ''')
2767
2768
2769 lib_bind_fi_files = Split('''
2770     menus.bind
2771 ''')
2772
2773
2774 lib_bind_sv_files = Split('''
2775     menus.bind
2776 ''')
2777
2778
2779 lib_bind_pt_files = Split('''
2780     menus.bind
2781 ''')
2782
2783
2784 lib_bind_de_files = Split('''
2785     menus.bind
2786 ''')
2787
2788
2789 lib_commands_files = Split('''
2790     default.def
2791 ''')
2792
2793
2794 boost_extra_files = Split('''
2795     LICENSE_1_0.txt
2796     Makefile.am
2797 ''')
2798
2799
2800 boost_libs_extra_files = Split('''
2801     Makefile.am
2802     README
2803 ''')
2804
2805
2806 boost_libs_signals_extra_files = Split('''
2807     Makefile.am
2808     signals.vcproj
2809 ''')
2810
2811
2812 boost_libs_signals_src_files = Split('''
2813     connection.cpp
2814     named_slot_map.cpp
2815     signal_base.cpp
2816     slot.cpp
2817     trackable.cpp
2818 ''')
2819
2820
2821 boost_libs_signals_src_extra_files = Split('''
2822     Makefile.am
2823     pch.h
2824 ''')
2825
2826
2827 boost_libs_regex_extra_files = Split('''
2828     Makefile.am
2829     regex.vcproj
2830 ''')
2831
2832
2833 boost_libs_regex_src_files = Split('''
2834     c_regex_traits.cpp
2835     cpp_regex_traits.cpp
2836     cregex.cpp
2837     fileiter.cpp
2838     instances.cpp
2839     posix_api.cpp
2840     regex.cpp
2841     regex_debug.cpp
2842     regex_raw_buffer.cpp
2843     regex_traits_defaults.cpp
2844     w32_regex_traits.cpp
2845     wide_posix_api.cpp
2846     winstances.cpp
2847 ''')
2848
2849
2850 boost_libs_regex_src_extra_files = Split('''
2851     Makefile.am
2852     pch.h
2853 ''')
2854
2855
2856
2857 development_Win32_packaging_installer = Split('''
2858     license.rtf
2859     lyx.nsi
2860     settings.nsh
2861 ''')
2862
2863
2864 development_Win32_packaging_installer_graphics = Split('''
2865     header.bmp
2866     wizard.bmp
2867 ''')
2868
2869
2870 development_Win32_packaging_installer_gui = Split('''
2871     external.nsh
2872     langselect.nsh
2873     reinstall.nsh
2874 ''')
2875
2876
2877 development_Win32_packaging_installer_include = Split('''
2878     declarations.nsh
2879     detection.nsh
2880     dictlist.nsh    
2881     filelist.nsh
2882     gui.nsh
2883     init.nsh
2884     langlist.nsh
2885     nsis.nsh
2886     variables.nsh
2887 ''')
2888
2889
2890 development_Win32_packaging_installer_lang = Split('''
2891     english.nsh
2892     french.nsh
2893     german.nsh
2894     italian.nsh
2895 ''')
2896
2897
2898 development_Win32_packaging_installer_setup = Split('''
2899     configure.nsh
2900     install.nsh
2901     reinstall.nsh
2902 ''')