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