]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
adjust build systems
[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     ChangeLog
824     Makefile.am
825     pch.h
826 ''')
827
828
829 src_frontends_controllers_tests_extra_files = Split('''
830     Makefile.am
831     biblio.cpp
832     boost.cpp
833     pch.h
834     test_biblio
835 ''')
836
837
838 src_frontends_controllers_tests_regfiles_extra_files = Split('''
839     biblio
840 ''')
841
842
843 src_frontends_qt4_header_files = Split('''
844     Action.h
845     BulletsModule.h
846     CheckedLineEdit.h
847     ColorCache.h
848     DockView.h
849     EmptyTable.h
850     FloatPlacement.h
851     GuiAbout.h
852     GuiApplication.h
853     GuiBibitem.h
854     GuiBibtex.h
855     GuiBox.h
856     GuiBranches.h
857     GuiBranch.h
858     GuiChanges.h
859     GuiCharacter.h
860     GuiCharacter.h
861     GuiCitation.h
862     GuiClipboard.h
863     GuiCommandBuffer.h
864     GuiCommandEdit.h
865     GuiDelimiter.h
866     GuiDialogView.h
867     GuiDocument.h
868     GuiEmbeddedFiles.h
869     GuiErrorList.h
870     GuiERT.h
871     GuiExternal.h
872     GuiFloat.h
873     GuiFontExample.h
874     GuiFontLoader.h
875     GuiGraphics.h
876     GuiGraphicsUi.h
877     GuiImage.h
878     GuiImplementation.h
879     GuiInclude.h
880     GuiIndex.h
881     GuiKeySymbol.h
882     GuiListings.h
883     GuiLog.h
884     GuiMathMatrix.h
885     GuiMenubar.h
886     GuiNomencl.h
887     GuiNote.h
888     GuiPainter.h
889     GuiParagraph.h
890     GuiPopupMenu.h
891     GuiPrefs.h
892     GuiPrint.h
893     GuiRef.h
894     GuiSearch.h
895     GuiSelection.h
896     GuiSelectionManager.h
897     GuiSendto.h
898     GuiSetBorder.h
899     GuiShowFile.h
900     GuiSpellchecker.h
901     GuiTabularCreate.h
902     GuiTabular.h
903     GuiTexinfo.h
904     GuiThesaurus.h
905     GuiToc.h
906     GuiToolbar.h
907     GuiURL.h
908     GuiView.h
909     GuiViewSource.h
910     GuiVSpace.h
911     GuiWorkArea.h
912     GuiWrap.h
913     IconPalette.h
914     InsertTableWidget.h
915     LengthCombo.h
916     LyXFileDialog.h
917     PanelStack.h
918     Qt2BC.h
919     TocModel.h
920     TocWidget.h
921     Validator.h
922     qlkey.h
923     qt_helpers.h
924     socket_callback.h
925 ''')
926
927
928 src_frontends_qt4_files = Split('''
929     Action.cpp
930     BulletsModule.cpp
931     CheckedLineEdit.cpp
932     ColorCache.cpp
933     Dialogs.cpp
934     EmptyTable.cpp
935     FileDialog.cpp
936     FloatPlacement.cpp
937     GuiAbout.cpp
938     GuiApplication.cpp
939     GuiBibitem.cpp
940     GuiBibtex.cpp
941     GuiBox.cpp
942     GuiBranch.cpp
943     GuiBranches.cpp
944     GuiChanges.cpp
945     GuiCharacter.cpp
946     GuiCitation.cpp
947     GuiClipboard.cpp
948     GuiCommandBuffer.cpp
949     GuiCommandEdit.cpp
950     GuiDelimiter.cpp
951     GuiDialogView.cpp
952     GuiDocument.cpp
953     GuiEmbeddedFiles.cpp
954     GuiErrorList.cpp
955     GuiERT.cpp
956     GuiExternal.cpp
957     GuiFloat.cpp
958     GuiFontExample.cpp
959     GuiFontLoader.cpp
960     GuiFontMetrics.cpp
961     GuiGraphics.cpp
962     GuiImage.cpp
963     GuiImplementation.cpp
964     GuiInclude.cpp
965     GuiIndex.cpp
966     GuiKeySymbol.cpp
967     GuiListings.cpp
968     GuiLog.cpp
969     GuiMathMatrix.cpp
970     GuiMenubar.cpp
971     GuiNomencl.cpp
972     GuiNote.cpp
973     GuiPainter.cpp
974     GuiParagraph.cpp
975     GuiPopupMenu.cpp
976     GuiPrefs.cpp
977     GuiPrint.cpp
978     GuiRef.cpp
979     GuiSearch.cpp
980     GuiSelection.cpp
981     GuiSelectionManager.cpp
982     GuiSendto.cpp
983     GuiSetBorder.cpp
984     GuiShowFile.cpp
985     GuiSpellchecker.cpp
986     GuiTabular.cpp
987     GuiTabularCreate.cpp
988     GuiTexinfo.cpp
989     GuiThesaurus.cpp
990     GuiToc.cpp
991     GuiToolbar.cpp
992     GuiURL.cpp
993     GuiView.cpp
994     GuiViewSource.cpp
995     GuiVSpace.cpp
996     GuiWorkArea.cpp
997     GuiWrap.cpp
998     IconPalette.cpp
999     InsertTableWidget.cpp
1000     LengthCombo.cpp
1001     LyXFileDialog.cpp
1002     PanelStack.cpp
1003     Qt2BC.cpp
1004     TocModel.cpp
1005     TocWidget.cpp
1006     Validator.cpp
1007     alert_pimpl.cpp
1008     qt_helpers.cpp
1009     socket_callback.cpp
1010 ''')
1011
1012
1013 src_frontends_qt4_extra_files = Split('''
1014     ChangeLog
1015     GuiFontMetrics.h
1016     Makefile.am
1017     README
1018     pch.h
1019 ''')
1020
1021
1022 src_frontends_qt4_ui_files = Split('''
1023     AboutUi.ui
1024     AskForTextUi.ui
1025     BibitemUi.ui
1026     BiblioUi.ui
1027     BibtexAddUi.ui
1028     BibtexUi.ui
1029     BoxUi.ui
1030     BranchUi.ui
1031     BranchesUi.ui
1032     BulletsUi.ui
1033     ChangesUi.ui
1034     CharacterUi.ui
1035     CitationUi.ui
1036     DelimiterUi.ui
1037     DocumentUi.ui
1038     EmbeddedFilesUi.ui
1039     ERTUi.ui
1040     ErrorListUi.ui
1041     ExternalUi.ui
1042     FloatPlacementUi.ui
1043     FloatUi.ui
1044     FontUi.ui
1045     GraphicsUi.ui
1046     IncludeUi.ui
1047     IndexUi.ui
1048     LaTeXUi.ui
1049     LanguageUi.ui
1050     ListingsUi.ui
1051     LogUi.ui
1052     MarginsUi.ui
1053     MathMatrixUi.ui
1054     MathsUi.ui
1055     NomenclUi.ui
1056     NoteUi.ui
1057     NumberingUi.ui
1058     PageLayoutUi.ui
1059     ParagraphUi.ui
1060     PreambleUi.ui
1061     PrefColorsUi.ui
1062     PrefConvertersUi.ui
1063     PrefCopiersUi.ui
1064     PrefCygwinPathUi.ui
1065     PrefDateUi.ui
1066     PrefDisplayUi.ui
1067     PrefFileformatsUi.ui
1068     PrefIdentityUi.ui
1069     PrefKeyboardUi.ui
1070     PrefLanguageUi.ui
1071     PrefLatexUi.ui
1072     PrefPathsUi.ui
1073     PrefPlaintextUi.ui
1074     PrefPrinterUi.ui
1075     PrefScreenFontsUi.ui
1076     PrefSpellcheckerUi.ui
1077     PrefUi.ui
1078     PrefsUi.ui
1079     PrintUi.ui
1080     RefUi.ui
1081     SearchUi.ui
1082     SendtoUi.ui
1083     ShowFileUi.ui
1084     SpellcheckerUi.ui
1085     TabularCreateUi.ui
1086     TabularUi.ui
1087     TexinfoUi.ui
1088     TextLayoutUi.ui
1089     ThesaurusUi.ui
1090     TocUi.ui
1091     URLUi.ui
1092     VSpaceUi.ui
1093     ViewSourceUi.ui
1094     WrapUi.ui
1095 ''')
1096
1097
1098 src_frontends_qt4_ui_extra_files = Split('''
1099     Makefile.am
1100     compile_uic.sh
1101 ''')
1102
1103
1104 src_insets_header_files = Split('''
1105     ExternalSupport.h
1106     ExternalTemplate.h
1107     ExternalTransforms.h
1108     Inset.h
1109     InsetBibitem.h
1110     InsetBibtex.h
1111     InsetBox.h
1112     InsetBranch.h
1113     InsetCaption.h
1114     InsetCharStyle.h
1115     InsetCitation.h
1116     InsetCollapsable.h
1117     InsetCommand.h
1118     InsetCommandParams.h
1119     InsetERT.h
1120     InsetEnvironment.h
1121     InsetExternal.h
1122     InsetFloat.h
1123     InsetFloatList.h
1124     InsetFoot.h
1125     InsetFootlike.h
1126     InsetGraphics.h
1127     InsetGraphicsParams.h
1128     InsetHFill.h
1129     InsetInclude.h
1130     InsetIndex.h
1131     InsetLabel.h
1132     InsetLine.h
1133     InsetListings.h
1134     InsetListingsParams.h
1135     InsetMarginal.h
1136     InsetNewline.h
1137     InsetNomencl.h
1138     InsetNote.h
1139     InsetOptArg.h
1140     InsetPagebreak.h
1141     InsetQuotes.h
1142     InsetRef.h
1143     InsetSpace.h
1144     InsetSpecialChar.h
1145     InsetTOC.h
1146     InsetTabular.h
1147     InsetText.h
1148     InsetUrl.h
1149     InsetVSpace.h
1150     InsetWrap.h
1151     MailInset.h
1152     RenderBase.h
1153     RenderButton.h
1154     RenderGraphic.h
1155     RenderPreview.h
1156 ''')
1157
1158
1159 src_insets_files = Split('''
1160     ExternalSupport.cpp
1161     ExternalTemplate.cpp
1162     ExternalTransforms.cpp
1163     Inset.cpp
1164     InsetBibitem.cpp
1165     InsetBibtex.cpp
1166     InsetBox.cpp
1167     InsetBranch.cpp
1168     InsetCaption.cpp
1169     InsetCharStyle.cpp
1170     InsetCitation.cpp
1171     InsetCollapsable.cpp
1172     InsetCommand.cpp
1173     InsetCommandParams.cpp
1174     InsetERT.cpp
1175     InsetEnvironment.cpp
1176     InsetExternal.cpp
1177     InsetFloat.cpp
1178     InsetFloatList.cpp
1179     InsetFoot.cpp
1180     InsetFootlike.cpp
1181     InsetGraphics.cpp
1182     InsetGraphicsParams.cpp
1183     InsetHFill.cpp
1184     InsetInclude.cpp
1185     InsetIndex.cpp
1186     InsetLabel.cpp
1187     InsetLine.cpp
1188     InsetListings.cpp
1189     InsetListingsParams.cpp
1190     InsetMarginal.cpp
1191     InsetNewline.cpp
1192     InsetNomencl.cpp
1193     InsetNote.cpp
1194     InsetOptArg.cpp
1195     InsetPagebreak.cpp
1196     InsetQuotes.cpp
1197     InsetRef.cpp
1198     InsetSpace.cpp
1199     InsetSpecialChar.cpp
1200     InsetTOC.cpp
1201     InsetTabular.cpp
1202     InsetText.cpp
1203     InsetUrl.cpp
1204     InsetVSpace.cpp
1205     InsetWrap.cpp
1206     MailInset.cpp
1207     RenderButton.cpp
1208     RenderGraphic.cpp
1209     RenderPreview.cpp
1210 ''')
1211
1212
1213 src_insets_extra_files = Split('''
1214     ChangeLog
1215     InsetTheorem.cpp
1216     InsetTheorem.h
1217     Makefile.am
1218     pch.h
1219 ''')
1220
1221
1222 intl_header_files = Split('''
1223     eval-plural.h
1224     gettextP.h
1225     gmo.h
1226     hash-string.h
1227     loadinfo.h
1228     localcharset.h
1229     os2compat.h
1230     plural-exp.h
1231     printf-args.h
1232     printf-parse.h
1233     relocatable.h
1234     vasnprintf.h
1235     vasnwprintf.h
1236     wprintf-parse.h
1237     xsize.h
1238 ''')
1239
1240
1241 intl_files = Split('''
1242     bindtextdom.c
1243     dcgettext.c
1244     dcigettext.c
1245     dcngettext.c
1246     dgettext.c
1247     dngettext.c
1248     explodename.c
1249     finddomain.c
1250     gettext.c
1251     intl-compat.c
1252     l10nflist.c
1253     langprefs.c
1254     loadmsgcat.c
1255     localcharset.c
1256     localealias.c
1257     localename.c
1258     log.c
1259     ngettext.c
1260     osdep.c
1261     plural-exp.c
1262     plural.c
1263     printf.c
1264     relocatable.c
1265     textdomain.c
1266 ''')
1267
1268
1269 intl_extra_files = Split('''
1270     ChangeLog
1271     VERSION
1272     config.charset
1273     libgnuintl.h.in
1274     locale.alias
1275     os2compat.c
1276     plural.y
1277     printf-args.c
1278     printf-parse.c
1279     ref-add.sin
1280     ref-del.sin
1281     vasnprintf.c
1282 ''')
1283
1284
1285 config_extra_files = Split('''
1286     ChangeLog
1287     Makefile.am
1288     common.am
1289     config.guess
1290     config.rpath
1291     config.sub
1292     depcomp
1293     install-sh
1294     libtool.m4
1295     ltmain.sh
1296     lyxinclude.m4
1297     missing
1298     mkinstalldirs
1299     pkg.m4
1300     py-compile
1301     qt4.m4
1302     spell.m4
1303 ''')
1304
1305
1306 sourcedoc_extra_files = Split('''
1307     Doxyfile.in
1308     Makefile.am
1309 ''')
1310
1311
1312 po_extra_files = Split('''
1313     ChangeLog
1314     LINGUAS
1315     Makefile.in.in
1316     Makevars
1317     POTFILES.in
1318     README
1319     Rules-quot
1320     bg.po
1321     boldquot.sed
1322     ca.po
1323     cs.po
1324     da.po
1325     de.po
1326     en@boldquot.header
1327     en@quot.header
1328     es.po
1329     eu.po
1330     fi.po
1331     fr.po
1332     gl.po
1333     he.po
1334     hu.po
1335     insert-header.sin
1336     it.po
1337     ja.po
1338     ko.po
1339     lyx_pot.py
1340     nb.po
1341     nl.po
1342     nn.po
1343     pl.po
1344     pocheck.pl
1345     postats.sh
1346     pt.po
1347     quot.sed
1348     remove-potcdate.sin
1349     ro.po
1350     ru.po
1351     sk.po
1352     sl.po
1353     sv.po
1354     tr.po
1355     wa.po
1356     zh_CN.po
1357     zh_TW.po
1358 ''')
1359
1360
1361 lib_files = Split('''
1362     CREDITS
1363     chkconfig.ltx
1364     configure.py
1365     encodings
1366     external_templates
1367     languages
1368     symbols
1369     syntax.default
1370     unicodesymbols
1371 ''')
1372
1373
1374 lib_extra_files = Split('''
1375     ChangeLog
1376     Makefile.am
1377     autocorrect
1378     build-listerrors
1379     generate_contributions.py
1380 ''')
1381
1382
1383 lib_kbd_files = Split('''
1384     american-2.kmap
1385     american.kmap
1386     arabic.kmap
1387     bg-bds-1251.kmap
1388     brazil.kmap
1389     brazil2.kmap
1390     czech-prg.kmap
1391     czech.kmap
1392     espanol.kmap
1393     european.kmap
1394     farsi.kmap
1395     francais.kmap
1396     french.kmap
1397     german-2.kmap
1398     german-3.kmap
1399     german.kmap
1400     greek.kmap
1401     hebrew.kmap
1402     koi8-r.kmap
1403     koi8-u.kmap
1404     latvian.kmap
1405     magyar-2.kmap
1406     magyar-3.kmap
1407     magyar.kmap
1408     null.kmap
1409     polish.kmap
1410     polski.kmap
1411     portuges.kmap
1412     romanian.kmap
1413     serbian.kmap
1414     serbocroatian.kmap
1415     sf.kmap
1416     sg.kmap
1417     slovak.kmap
1418     slovene.kmap
1419     thai-kedmanee.kmap
1420     transilvanian.kmap
1421     turkish-f.kmap
1422     turkish.kmap
1423 ''')
1424
1425
1426 lib_templates_files = Split('''
1427     IEEEtran.lyx
1428     README.new_templates
1429     aa.lyx
1430     aastex.lyx
1431     agu_article.lyx
1432     apa.lyx
1433     beamer-conference-ornate-20min.lyx
1434     de_beamer-conference-ornate-20min.lyx
1435     dinbrief.lyx
1436     docbook_article.lyx
1437     elsart.lyx
1438     fr_beamer-conference-ornate-20min.lyx
1439     g-brief-de.lyx
1440     g-brief-en.lyx
1441     g-brief2.lyx
1442     hollywood.lyx
1443     ijmpc.lyx
1444     ijmpd.lyx
1445     iop-article.lyx
1446     kluwer.lyx
1447     koma-letter2.lyx
1448     latex8.lyx
1449     letter.lyx
1450     revtex.lyx
1451     revtex4.lyx
1452     slides.lyx
1453 ''')
1454
1455
1456 lib_ui_files = Split('''
1457     classic.ui
1458     default.ui
1459     stdmenus.inc
1460     stdtoolbars.inc
1461 ''')
1462
1463
1464 lib_fonts_files = Split('''
1465     BaKoMaFontLicense.txt
1466     ReadmeBaKoMa4LyX.txt
1467     cmex10.ttf
1468     cmmi10.ttf
1469     cmr10.ttf
1470     cmsy10.ttf
1471     eufm10.ttf
1472     msam10.ttf
1473     msbm10.ttf
1474     wasy10.ttf
1475 ''')
1476
1477
1478 lib_images_files = Split('''
1479     all-changes-accept.png
1480     all-changes-reject.png
1481     amssymb.png
1482     banner.png
1483     bookmark-goto.png
1484     bookmark-save.png
1485     break-line.png
1486     buffer-close.png
1487     buffer-export_dvi.png
1488     buffer-export_latex.png
1489     buffer-export_pdf2.png
1490     buffer-export_ps.png
1491     buffer-export_text.png
1492     buffer-new.png
1493     buffer-reload.png
1494     buffer-update_dvi.png
1495     buffer-update_pdf2.png
1496     buffer-update_ps.png
1497     buffer-view_dvi.png
1498     buffer-view_pdf2.png
1499     buffer-view_ps.png
1500     buffer-write-as.png
1501     buffer-write.png
1502     build-program.png
1503     change-accept.png
1504     change-next.png
1505     change-reject.png
1506     changes-merge.png
1507     changes-output.png
1508     changes-track.png
1509     closetab.png
1510     copy.png
1511     cut.png
1512     demote.png
1513     depth-decrement.png
1514     depth-increment.png
1515     dialog-preferences.png
1516     dialog-show-new-inset_citation.png
1517     dialog-show-new-inset_graphics.png
1518     dialog-show-new-inset_include.png
1519     dialog-show-new-inset_ref.png
1520     dialog-show_character.png
1521     dialog-show_findreplace.png
1522     dialog-show_mathdelimiter.png
1523     dialog-show_mathmatrix.png
1524     dialog-show_print.png
1525     dialog-show_spellchecker.png
1526     dialog-toggle_toc.png
1527     down.png
1528     ert-insert.png
1529     file-open.png
1530     float-insert_figure.png
1531     float-insert_table.png
1532     font-bold.png
1533     font-emph.png
1534     font-free-apply.png
1535     font-noun.png
1536     font-sans.png
1537     footnote-insert.png
1538     index-insert.png
1539     label-insert.png
1540     layout-document.png
1541     layout-paragraph.png
1542     layout.png
1543     layout_Description.png
1544     layout_Enumerate.png
1545     layout_Itemize.png
1546     layout_List.png
1547     layout_LyX-Code.png
1548     layout_Scrap.png
1549     layout_Section.png
1550     lyx-quit.png
1551     lyx.png
1552     marginalnote-insert.png
1553     math-display.png
1554     math-matrix.png
1555     math-mode.png
1556     math-subscript.png
1557     math-superscript.png
1558     nomencl-insert.png
1559     note-insert.png
1560     note-next.png
1561     paste.png
1562     promote.png
1563     psnfss1.png
1564     psnfss2.png
1565     psnfss3.png
1566     psnfss4.png
1567     redo.png
1568     reload.png
1569     standard.png
1570     tabular-feature_align-center.png
1571     tabular-feature_align-left.png
1572     tabular-feature_align-right.png
1573     tabular-feature_append-column.png
1574     tabular-feature_append-row.png
1575     tabular-feature_delete-column.png
1576     tabular-feature_delete-row.png
1577     tabular-feature_multicolumn.png
1578     tabular-feature_set-all-lines.png
1579     tabular-feature_set-longtabular.png
1580     tabular-feature_set-rotate-cell.png
1581     tabular-feature_toggle-rotate-cell.png
1582     tabular-feature_set-rotate-tabular.png
1583     tabular-feature_toggle-rotate-tabular.png
1584     tabular-feature_toggle-line-bottom.png
1585     tabular-feature_toggle-line-left.png
1586     tabular-feature_toggle-line-right.png
1587     tabular-feature_toggle-line-top.png
1588     tabular-feature_unset-all-lines.png
1589     tabular-feature_valign-bottom.png
1590     tabular-feature_valign-middle.png
1591     tabular-feature_valign-top.png
1592     tabular-insert.png
1593     thesaurus-entry.png
1594     toolbar-toggle_math.png
1595     toolbar-toggle_math_panels.png
1596     toolbar-toggle_table.png
1597     undo.png
1598     unknown.png
1599     up.png
1600     url-insert.png
1601 ''')
1602
1603
1604 lib_images_extra_files = Split('''
1605     README
1606     font-smallcaps.png
1607 ''')
1608
1609
1610 lib_images_math_files = Split('''
1611     Bbbk.png
1612     Finv.png
1613     Game.png
1614     Im.png
1615     Lleftarrow.png
1616     Lsh.png
1617     Re.png
1618     Rrightarrow.png
1619     Rsh.png
1620     Vert.png
1621     Vvdash.png
1622     acute.png
1623     aleph.png
1624     alpha.png
1625     amalg.png
1626     angle.png
1627     approx.png
1628     approxeq.png
1629     asymp.png
1630     backepsilon.png
1631     backprime.png
1632     backsim.png
1633     backsimeq.png
1634     backslash.png
1635     bar.png
1636     bars.png
1637     barwedge.png
1638     because.png
1639     beta.png
1640     beth.png
1641     between.png
1642     bigcap.png
1643     bigcirc.png
1644     bigcup.png
1645     bigodot.png
1646     bigoplus.png
1647     bigotimes.png
1648     bigsqcup.png
1649     bigstar.png
1650     bigtriangledown.png
1651     bigtriangleup.png
1652     biguplus.png
1653     bigvee.png
1654     bigwedge.png
1655     blacklozenge.png
1656     blacksquare.png
1657     blacktriangle.png
1658     blacktriangledown.png
1659     blacktriangleleft.png
1660     blacktriangleright.png
1661     bot.png
1662     bowtie.png
1663     boxdot.png
1664     boxminus.png
1665     boxplus.png
1666     boxtimes.png
1667     breve.png
1668     bullet.png
1669     bumpeq.png
1670     bumpeq2.png
1671     cap.png
1672     cap2.png
1673     cases.png
1674     cdot.png
1675     cdots.png
1676     centerdot.png
1677     check.png
1678     chi.png
1679     circ.png
1680     circeq.png
1681     circlearrowleft.png
1682     circlearrowright.png
1683     circledS.png
1684     circledast.png
1685     circledcirc.png
1686     circleddash.png
1687     clubsuit.png
1688     complement.png
1689     cong.png
1690     coprod.png
1691     cup.png
1692     cup2.png
1693     curlyeqprec.png
1694     curlyeqsucc.png
1695     curlyvee.png
1696     curlywedge.png
1697     curvearrowleft.png
1698     curvearrowright.png
1699     dagger.png
1700     daleth.png
1701     dashleftarrow.png
1702     dashrightarrow.png
1703     dashv.png
1704     ddagger.png
1705     ddot.png
1706     ddots.png
1707     delim.png
1708     delta.png
1709     delta2.png
1710     diagdown.png
1711     diagup.png
1712     diamond.png
1713     diamondsuit.png
1714     digamma.png
1715     div.png
1716     divideontimes.png
1717     dot.png
1718     doteq.png
1719     doteqdot.png
1720     dotplus.png
1721     dotsint.png
1722     dotsintop.png
1723     doublebarwedge.png
1724     downarrow.png
1725     downarrow2.png
1726     downdownarrows.png
1727     downharpoonleft.png
1728     downharpoonright.png
1729     ell.png
1730     empty.png
1731     emptyset.png
1732     epsilon.png
1733     eqcirc.png
1734     eqslantgtr.png
1735     eqslantless.png
1736     equation.png
1737     equiv.png
1738     eta.png
1739     eth.png
1740     exists.png
1741     fallingdotseq.png
1742     flat.png
1743     font.png
1744     forall.png
1745     frac-square.png
1746     frac.png
1747     frown.png
1748     functions.png
1749     gamma.png
1750     gamma2.png
1751     geq.png
1752     geqq.png
1753     geqslant.png
1754     gg.png
1755     ggg.png
1756     gimel.png
1757     gnapprox.png
1758     gneq.png
1759     gneqq.png
1760     gnsim.png
1761     grave.png
1762     gtrapprox.png
1763     gtrdot.png
1764     gtreqless.png
1765     gtreqqless.png
1766     gtrless.png
1767     gtrsim.png
1768     gvertneqq.png
1769     hat.png
1770     hbar.png
1771     heartsuit.png
1772     hookleftarrow.png
1773     hookrightarrow.png
1774     hphantom.png
1775     hslash.png
1776     iiiint.png
1777     iiiintop.png
1778     iiint.png
1779     iiintop.png
1780     iint.png
1781     iintop.png
1782     imath.png
1783     in.png
1784     infty.png
1785     int.png
1786     intercal.png
1787     intop.png
1788     iota.png
1789     jmath.png
1790     kappa.png
1791     lambda.png
1792     lambda2.png
1793     langle.png
1794     lbrace.png
1795     lbrace_rbrace.png
1796     lbracket.png
1797     lbracket_rbracket.png
1798     lceil.png
1799     lceil_rceil.png
1800     ldots.png
1801     leftarrow.png
1802     leftarrow2.png
1803     leftarrowtail.png
1804     leftharpoondown.png
1805     leftharpoonup.png
1806     leftleftarrows.png
1807     leftrightarrow.png
1808     leftrightarrow2.png
1809     leftrightarrows.png
1810     leftrightharpoons.png
1811     leftrightsquigarrow.png
1812     leftthreetimes.png
1813     leq.png
1814     leqq.png
1815     leqslant.png
1816     lessapprox.png
1817     lessdot.png
1818     lesseqgtr.png
1819     lesseqqgtr.png
1820     lessgtr.png
1821     lesssim.png
1822     lfloor.png
1823     lfloor_rfloor.png
1824     ll.png
1825     llcorner.png
1826     lll.png
1827     lnapprox.png
1828     lneq.png
1829     lneqq.png
1830     lnsim.png
1831     longleftarrow.png
1832     longleftarrow2.png
1833     longleftrightarrow.png
1834     longleftrightarrow2.png
1835     longmapsto.png
1836     longrightarrow.png
1837     longrightarrow2.png
1838     looparrowleft.png
1839     looparrowright.png
1840     lozenge.png
1841     lparen.png
1842     lparen_rparen.png
1843     lrcorner.png
1844     ltimes.png
1845     lvertneqq.png
1846     mapsto.png
1847     mathbb_C.png
1848     mathbb_H.png
1849     mathbb_N.png
1850     mathbb_Q.png
1851     mathbb_R.png
1852     mathbb_Z.png
1853     mathcal_F.png
1854     mathcal_H.png
1855     mathcal_L.png
1856     mathcal_O.png
1857     mathcircumflex.png
1858     mathrm_T.png
1859     matrix.png
1860     measuredangle.png
1861     mho.png
1862     mid.png
1863     models.png
1864     mp.png
1865     mu.png
1866     multimap.png
1867     nabla.png
1868     natural.png
1869     ncong.png
1870     nearrow.png
1871     neg.png
1872     neq.png
1873     nexists.png
1874     ngeq.png
1875     ngeqq.png
1876     ngeqslant.png
1877     ngtr.png
1878     ni.png
1879     nleftarrow.png
1880     nleftarrow2.png
1881     nleftrightarrow.png
1882     nleftrightarrow2.png
1883     nleq.png
1884     nleqq.png
1885     nleqslant.png
1886     nless.png
1887     nmid.png
1888     notin.png
1889     nparallel.png
1890     nprec.png
1891     npreceq.png
1892     nrightarrow.png
1893     nrightarrow2.png
1894     nshortmid.png
1895     nshortparallel.png
1896     nsim.png
1897     nsubseteq.png
1898     nsucc.png
1899     nsucceq.png
1900     nsupseteq.png
1901     nsupseteqq.png
1902     ntriangleleft.png
1903     ntrianglelefteq.png
1904     ntriangleright.png
1905     ntrianglerighteq.png
1906     nu.png
1907     nvdash.png
1908     nvdash2.png
1909     nvdash3.png
1910     nwarrow.png
1911     odot.png
1912     oiint.png
1913     oiintop.png
1914     oint.png
1915     ointclockwise.png
1916     ointclockwiseop.png
1917     ointctrclockwise.png
1918     ointctrclockwiseop.png
1919     ointop.png
1920     omega.png
1921     omega2.png
1922     ominus.png
1923     oplus.png
1924     oslash.png
1925     otimes.png
1926     overbrace.png
1927     overleftarrow.png
1928     overleftrightarrow.png
1929     overline.png
1930     overrightarrow.png
1931     overset.png
1932     parallel.png
1933     partial.png
1934     perp.png
1935     phantom.png
1936     phi.png
1937     phi2.png
1938     pi.png
1939     pi2.png
1940     pitchfork.png
1941     pm.png
1942     prec.png
1943     precapprox.png
1944     preccurlyeq.png
1945     preceq.png
1946     precnapprox.png
1947     precnsim.png
1948     precsim.png
1949     prime.png
1950     prod.png
1951     propto.png
1952     psi.png
1953     psi2.png
1954     rangle.png
1955     rbrace.png
1956     rbracket.png
1957     rceil.png
1958     rfloor.png
1959     rho.png
1960     rightarrow.png
1961     rightarrow2.png
1962     rightarrowtail.png
1963     rightharpoondown.png
1964     rightharpoonup.png
1965     rightleftarrows.png
1966     rightleftharpoons.png
1967     rightrightarrows.png
1968     rightsquigarrow.png
1969     rightthreetimes.png
1970     risingdotseq.png
1971     root.png
1972     rparen.png
1973     rtimes.png
1974     searrow.png
1975     setminus.png
1976     sharp.png
1977     shortmid.png
1978     shortparallel.png
1979     sigma.png
1980     sigma2.png
1981     sim.png
1982     simeq.png
1983     slash.png
1984     smallfrown.png
1985     smallsetminus.png
1986     smallsmile.png
1987     smile.png
1988     space.png
1989     spadesuit.png
1990     sphericalangle.png
1991     sqcap.png
1992     sqcup.png
1993     sqiint.png
1994     sqiintop.png
1995     sqint.png
1996     sqintop.png
1997     sqrt-square.png
1998     sqrt.png
1999     sqsubset.png
2000     sqsubseteq.png
2001     sqsupset.png
2002     sqsupseteq.png
2003     square.png
2004     star.png
2005     style.png
2006     style.png
2007     sub.png
2008     subset.png
2009     subset2.png
2010     subseteq.png
2011     subseteqq.png
2012     subsetneq.png
2013     subsetneqq.png
2014     succ.png
2015     succapprox.png
2016     succcurlyeq.png
2017     succeq.png
2018     succnapprox.png
2019     succnsim.png
2020     succsim.png
2021     sum.png
2022     super.png
2023     supset.png
2024     supset2.png
2025     supseteq.png
2026     supseteqq.png
2027     supsetneq.png
2028     supsetneqq.png
2029     surd.png
2030     swarrow.png
2031     tau.png
2032     textrm_AA.png
2033     textrm_Oe.png
2034     therefore.png
2035     theta.png
2036     theta2.png
2037     thickapprox.png
2038     thicksim.png
2039     tilde.png
2040     times.png
2041     top.png
2042     triangle.png
2043     triangledown.png
2044     triangleleft.png
2045     trianglelefteq.png
2046     triangleq.png
2047     triangleright.png
2048     trianglerighteq.png
2049     twoheadleftarrow.png
2050     twoheadrightarrow.png
2051     ulcorner.png
2052     underbrace.png
2053     underleftarrow.png
2054     underleftrightarrow.png
2055     underline.png
2056     underrightarrow.png
2057     underscore.png
2058     underset.png
2059     uparrow.png
2060     uparrow2.png
2061     updownarrow.png
2062     updownarrow2.png
2063     upharpoonleft.png
2064     upharpoonright.png
2065     uplus.png
2066     upsilon.png
2067     upsilon2.png
2068     upuparrows.png
2069     urcorner.png
2070     varepsilon.png
2071     varkappa.png
2072     varnothing.png
2073     varphi.png
2074     varpi.png
2075     varpropto.png
2076     varrho.png
2077     varsigma.png
2078     varsubsetneq.png
2079     varsubsetneqq.png
2080     varsupsetneq.png
2081     varsupsetneqq.png
2082     vartheta.png
2083     vartriangle.png
2084     vartriangleleft.png
2085     vartriangleright.png
2086     vdash.png
2087     vdash2.png
2088     vdash3.png
2089     vdots.png
2090     vec.png
2091     vee.png
2092     veebar.png
2093     vphantom.png
2094     wedge.png
2095     widehat.png
2096     widetilde.png
2097     wp.png
2098     wr.png
2099     xi.png
2100     xi2.png
2101     zeta.png
2102 ''')
2103
2104
2105 lib_images_math_extra_files = Split('''
2106     ams_arrows.png
2107     ams_misc.png
2108     ams_nrel.png
2109     ams_ops.png
2110     ams_rel.png
2111     arrows.png
2112     bop.png
2113     brel.png
2114     deco.png
2115     deco.png
2116     delim.png
2117     delim0.png
2118     delim1.png
2119     dots.png
2120     font.png
2121     functions.png
2122     greek.png
2123     misc.png
2124     varsz.png
2125 ''')
2126
2127
2128 lib_images_attic_extra_files = Split('''
2129     dialog-show_mathpanel.png
2130 ''')
2131
2132
2133 lib_tex_files = Split('''
2134     broadway.cls
2135     hollywood.cls
2136     lyxchess.sty
2137     lyxskak.sty
2138     revtex.cls
2139 ''')
2140
2141
2142 lib_doc_files = Split('''
2143     Customization.lyx
2144     DocStyle.lyx
2145     DummyDocument1.lyx
2146     DummyDocument2.lyx
2147     DummyTextDocument.txt
2148     EmbeddedObjects.lyx
2149     Extended.lyx
2150     FAQ.lyx
2151     Intro.lyx
2152     LaTeXConfig.lyx.in
2153     Reference.lyx
2154     Tutorial.lyx
2155     UserGuide.lyx
2156 ''')
2157
2158
2159 lib_doc_biblio_files = Split('''
2160     alphadin.bst
2161     LyXDocs.bib
2162 ''')
2163
2164
2165 lib_doc_clipart_files = Split('''
2166     Abstract.pdf
2167     BoxInsetDefaultQt4.png
2168     ChangesToolbar.png
2169     ChildDocumentQt4.png
2170     CommentNoteImageQt4.png
2171     ERT.png
2172     ExternalMaterialQt4.png
2173     ExtraToolbar.png
2174     FramedNoteImageQt4.png
2175     GreyedOutNoteImageQt4.png
2176     LaTeX.png
2177     LyXNoteImageQt4.png
2178     ShadedNoteImageQt4.png
2179     SpaceMarker.png
2180     StandardToolbar.png
2181     ToolbarEnvBox.png
2182     endnotes.pdf
2183     escher-lsd.eps
2184     floatQt4.png
2185     footnoteQt4.png
2186     labelQt4.png
2187     macrobox.png
2188     macrouse.png
2189     mbox.png
2190     mobius.eps
2191     platypus.eps
2192     referenceQt4.png
2193     ViewToolbar.png
2194     with_fntright.pdf
2195     without_fntright.pdf
2196 ''')
2197
2198
2199 lib_doc_extra_files = Split('''
2200     ChangeLog
2201     Makefile.am
2202     Makefile.depend
2203     README.Documentation
2204     depend.py
2205     doc_toc.py
2206 ''')
2207
2208
2209 lib_doc_cs_files = Split('''
2210     Tutorial.lyx
2211 ''')
2212
2213
2214 lib_doc_de_files = Split('''
2215     Customization.lyx
2216     DummyDocument1.lyx
2217     DummyDocument2.lyx
2218     DummyTextDocument.txt
2219     EmbeddedObjects.lyx
2220     Extended.lyx
2221     FAQ.lyx
2222     Intro.lyx
2223     Tutorial.lyx
2224     UserGuide.lyx
2225 ''')
2226
2227
2228 lib_doc_de_clipart_files = Split('''
2229     ExternesMaterialQt4.png
2230     FussnoteQt4.png
2231     GerahmteNotizQt4.png
2232     GleitobjektQt4.png
2233     GrauschriftNotizQt4.png
2234     KommentarQt4.png
2235     LyXNotizQt4.png
2236     Marke.png
2237     Querverweis.png
2238     SchattierteNotizQt4.png
2239     StandardBoxQt4.png
2240     UnterdokumentQt4.png
2241 ''')
2242
2243
2244 lib_doc_da_files = Split('''
2245     Intro.lyx
2246 ''')
2247
2248
2249 lib_doc_es_files = Split('''
2250     DocumentoPostizo1.lyx
2251     DocumentoPostizo2.lyx
2252     DocumentoTextoPostizo.txt
2253     EmbeddedObjects.lyx
2254     Extended.lyx
2255     Intro.lyx
2256     Tutorial.lyx
2257 ''')
2258
2259
2260 lib_doc_es_clipart_files = Split('''
2261     ComentNotaImagenQt4.png
2262     CuadroMinipagQt4.png
2263     DocumentoHijoQt4.png
2264     GrisNotaImagenQt4.png
2265     MaterialExternoQt4.png
2266     NotaEnmarcadaImg.png
2267     NotaLyXImagenQt4.png
2268     NotaSombreadaImg.png
2269     etiquetaQt4.png
2270     flotanteQt4.png
2271     notapieQt4.png
2272     referenciaQt4.png
2273 ''')
2274
2275
2276 lib_doc_eu_files = Split('''
2277     Customization.lyx
2278     Extended.lyx
2279     FAQ.lyx
2280     Intro.lyx
2281     Tutorial.lyx
2282     UserGuide.lyx
2283 ''')
2284
2285
2286 lib_doc_fr_files = Split('''
2287     Customization.lyx
2288     Extended.lyx
2289     FAQ.lyx
2290     Intro.lyx
2291     Tutorial.lyx
2292     UserGuide.lyx
2293 ''')
2294
2295
2296 lib_doc_gl_extra_files = Split('''
2297     Intro.lyx
2298     Tutorial.lyx
2299 ''')
2300
2301
2302 lib_doc_he_files = Split('''
2303     Intro.lyx
2304     Tutorial.lyx
2305 ''')
2306
2307
2308 lib_doc_hu_files = Split('''
2309     Intro.lyx
2310     Tutorial.lyx
2311 ''')
2312
2313
2314 lib_doc_it_files = Split('''
2315     Customization.lyx
2316     Intro.lyx
2317     Tutorial.lyx
2318     UserGuide.lyx
2319 ''')
2320
2321
2322 lib_doc_nb_files = Split('''
2323     Intro.lyx
2324 ''')
2325
2326
2327 lib_doc_nl_files = Split('''
2328     Intro.lyx
2329     Tutorial.lyx
2330 ''')
2331
2332
2333 lib_doc_pl_files = Split('''
2334     Extended.lyx
2335     Intro.lyx
2336     Tutorial.lyx
2337 ''')
2338
2339
2340 lib_doc_pt_files = Split('''
2341     Intro.lyx
2342     Tutorial.lyx
2343 ''')
2344
2345
2346 lib_doc_ro_files = Split('''
2347     Intro.lyx
2348 ''')
2349
2350
2351 lib_doc_ru_files = Split('''
2352     FAQ.lyx
2353     Intro.lyx
2354     Tutorial.lyx
2355 ''')
2356
2357
2358 lib_doc_sl_files = Split('''
2359     Intro.lyx
2360     Tutorial.lyx
2361 ''')
2362
2363
2364 lib_doc_sk_files = Split('''
2365     Tutorial.lyx
2366     UserGuide.lyx
2367 ''')
2368
2369
2370 lib_doc_sv_files = Split('''
2371     Intro.lyx
2372     Tutorial.lyx
2373 ''')
2374
2375
2376 lib_examples_files = Split('''
2377     CV-image.eps
2378     CV-image.png
2379     Foils.lyx
2380     ItemizeBullets.lyx
2381     Literate.lyx
2382     Minipage.lyx
2383     aa_sample.lyx
2384     aas_sample.lyx
2385     amsart-test.lyx
2386     amsbook-test.lyx
2387     armenian-article.lyx
2388     beamer-g4-mask.jpg
2389     beamer-g4.jpg
2390     beamer-icsi-logo.pdf
2391     beamer-knight1-mask.png
2392     beamer-knight1.png
2393     beamer-knight2-mask.png
2394     beamer-knight2.png
2395     beamer-knight3-mask.png
2396     beamer-knight3.png
2397     beamer-knight4-mask.png
2398     beamer-knight4.png
2399     beamerlyxexample1.lyx
2400     biblioExample.bib
2401     chess-article.lyx
2402     chessgame.lyx
2403     currency.lyx
2404     docbook_article.lyx
2405     europeCV.lyx
2406     example_lyxified.lyx
2407     example_raw.lyx
2408     iecc05.fen
2409     iecc07.fen
2410     iecc12.fen
2411     landslide.lyx
2412     listerrors.lyx
2413     listings.lyx
2414     mathed.lyx
2415     modernCV.lyx
2416     multicol.lyx
2417     noweb2lyx.lyx
2418     powerdot-example.lyx
2419     script_form.lyx
2420     simplecv.lyx
2421     splash.lyx
2422 ''')
2423
2424
2425 lib_examples_ca_files = Split('''
2426     splash.lyx
2427 ''')
2428
2429
2430 lib_examples_cs_files = Split('''
2431     splash.lyx
2432 ''')
2433
2434
2435 lib_examples_da_files = Split('''
2436     splash.lyx
2437 ''')
2438
2439
2440 lib_examples_de_files = Split('''
2441     Dezimal.lyx
2442     ItemizeBullets.lyx
2443     Lebenslauf.lyx
2444     Minipage.lyx
2445     TabellenBeispiel.lyx
2446     Waehrungen.lyx
2447     beispiel_gelyxt.lyx
2448     beispiel_roh.lyx
2449     mathed.lyx
2450     multicol.lyx
2451     splash.lyx
2452 ''')
2453
2454
2455 lib_examples_fa_files = Split('''
2456     splash.lyx
2457 ''')
2458
2459
2460 lib_examples_fr_files = Split('''
2461     AlignementDecimal.lyx
2462     simplecv.lyx
2463     ExemplesTableaux.lyx
2464     Foils.lyx
2465     ListesPuces.lyx
2466     Minipage.lyx
2467     exemple_brut.lyx
2468     exemple_lyxifie.lyx
2469     mathed.lyx
2470     multicol.lyx
2471     splash.lyx
2472 ''')
2473
2474
2475 lib_examples_es_files = Split('''
2476     ejemplo_con_lyx.lyx
2477     ejemplo_sin_lyx.lyx
2478     splash.lyx
2479 ''')
2480
2481
2482 lib_examples_eu_files = Split('''
2483     adibide_gordina.lyx
2484     adibide_lyx-atua.lyx
2485     splash.lyx
2486 ''')
2487
2488
2489 lib_examples_gl_extra_files = Split('''
2490     exemplo_bruto.lyx
2491     exemplo_lyxificado.lyx
2492     splash.lyx
2493 ''')
2494
2495
2496 lib_examples_he_files = Split('''
2497     example_lyxified.lyx
2498     example_raw.lyx
2499     splash.lyx
2500 ''')
2501
2502
2503 lib_examples_hu_files = Split('''
2504     example_lyxified.lyx
2505     example_raw.lyx
2506     splash.lyx
2507 ''')
2508
2509
2510 lib_examples_it_files = Split('''
2511     ItemizeBullets.lyx
2512     splash.lyx
2513 ''')
2514
2515
2516 lib_examples_nl_files = Split('''
2517     multicol.lyx
2518     opsommingstekens.lyx
2519     splash.lyx
2520     voorbeeld_ruw.lyx
2521     voorbeeld_verlyxt.lyx
2522 ''')
2523
2524
2525 lib_examples_pl_files = Split('''
2526     splash.lyx
2527 ''')
2528
2529
2530 lib_examples_pt_files = Split('''
2531     splash.lyx
2532 ''')
2533
2534
2535 lib_examples_ro_files = Split('''
2536     splash.lyx
2537 ''')
2538
2539
2540 lib_examples_ru_files = Split('''
2541     splash.lyx
2542 ''')
2543
2544
2545 lib_examples_sl_files = Split('''
2546     primer_lyxan.lyx
2547     primer_surov.lyx
2548     splash.lyx
2549 ''')
2550
2551
2552 lib_lyx2lyx_files = Split('''
2553     LyX.py
2554     generate_encoding_info.py
2555     lyx2lyx
2556     lyx2lyx_lang.py
2557     lyx_0_06.py
2558     lyx_0_08.py
2559     lyx_0_10.py
2560     lyx_0_12.py
2561     lyx_1_0.py
2562     lyx_1_1.py
2563     lyx_1_1_5.py
2564     lyx_1_1_6_0.py
2565     lyx_1_1_6_3.py
2566     lyx_1_2.py
2567     lyx_1_3.py
2568     lyx_1_4.py
2569     lyx_1_5.py
2570     lyx_1_6.py
2571     parser_tools.py
2572     profiling.py
2573     test_parser_tools.py
2574 ''')
2575
2576
2577 lib_lyx2lyx_extra_files = Split('''
2578     ChangeLog
2579     Makefile.am
2580     lyx2lyx_version.py.in
2581 ''')
2582
2583
2584 lib_layouts_files = Split('''
2585     IEEEtran.layout
2586     aa.layout
2587     aapaper.layout
2588     aastex.layout
2589     agu-dtd.layout
2590     agums.layout
2591     amsart-plain.layout
2592     amsart-seq.layout
2593     amsart.layout
2594     amsbook.layout
2595     apa.layout
2596     arab-article.layout
2597     armenian-article.layout
2598     article.layout
2599     beamer.layout
2600     book.layout
2601     broadway.layout
2602     chess.layout
2603     cl2emult.layout
2604     dinbrief.layout
2605     docbook-book.layout
2606     docbook-chapter.layout
2607     docbook-section.layout
2608     docbook.layout
2609     dtk.layout
2610     egs.layout
2611     elsart.layout
2612     entcs.layout
2613     europecv.layout
2614     extarticle.layout
2615     extbook.layout
2616     extletter.layout
2617     extreport.layout
2618     foils.layout
2619     g-brief-de.layout
2620     g-brief-en.layout
2621     g-brief2.layout
2622     heb-article.layout
2623     heb-letter.layout
2624     hollywood.layout
2625     ijmpc.layout
2626     ijmpd.layout
2627     iopart.layout
2628     isprs.layout
2629     jgrga.layout
2630     kluwer.layout
2631     latex8.layout
2632     letter.layout
2633     literate-article.layout
2634     literate-book.layout
2635     literate-report.layout
2636     llncs.layout
2637     ltugboat.layout
2638     manpage.layout
2639     memoir.layout
2640     moderncv.layout
2641     mwart.layout
2642     mwbk.layout
2643     mwrep.layout
2644     paper.layout
2645     powerdot.layout
2646     report.layout
2647     revtex.layout
2648     revtex4.layout
2649     scrartcl.layout
2650     scrbook.layout
2651     scrlettr.layout
2652     scrlttr2.layout
2653     scrreprt.layout
2654     seminar.layout
2655     siamltex.layout
2656     simplecv.layout
2657     slides.layout
2658     spie.layout
2659     svglobal.layout
2660     svjog.layout
2661     svprobth.layout
2662 ''')
2663
2664
2665 lib_layouts_inc_files = Split('''
2666     aapaper.inc
2667     agu_stdclass.inc
2668     agu_stdcounters.inc
2669     agu_stdlists.inc
2670     agu_stdsections.inc
2671     agu_stdtitle.inc
2672     aguplus.inc
2673     amsdefs.inc
2674     amsmaths-plain.inc
2675     amsmaths-seq.inc
2676     amsmaths.inc
2677     db_lyxmacros.inc
2678     db_stdcharstyles.inc
2679     db_stdclass.inc
2680     db_stdcounters.inc
2681     db_stdlayouts.inc
2682     db_stdlists.inc
2683     db_stdsections.inc
2684     db_stdstarsections.inc
2685     db_stdstruct.inc
2686     db_stdtitle.inc
2687     literate-scrap.inc
2688     lyxmacros.inc
2689     numarticle.inc
2690     numreport.inc
2691     numrevtex.inc
2692     scrclass.inc
2693     stdclass.inc
2694     stdcounters.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 ''')
2708
2709
2710 lib_layouts_module_files = Split('''
2711     lib/layouts/endnotes.module
2712     lib/layouts/foottoend.module
2713     lib/layouts/theorems-ams.module
2714     lib/layouts/theorems-ams-withinsec.module
2715     lib/layouts/theorems-std.module
2716     lib/layouts/theorems-withinsec.module
2717     lib/layouts/theorems-withinchap.module
2718     lib/layouts/url.module
2719 ''')
2720
2721 lib_scripts_files = Split('''
2722     TeXFiles.py
2723     clean_dvi.py
2724     convertDefault.py
2725     date.py
2726     ext_copy.py
2727     fen2ascii.py
2728     fig2pdftex.py
2729     fig2pstex.py
2730     fig_copy.py
2731     layout2layout.py
2732     legacy_lyxpreview2ppm.py
2733     listerrors
2734     lyxpreview2bitmap.py
2735     lyxpreview_tools.py
2736     tex_copy.py
2737 ''')
2738
2739
2740 lib_bind_files = Split('''
2741     aqua.bind
2742     broadway.bind
2743     cua.bind
2744     cyrkeys.bind
2745     emacs.bind
2746     greekkeys.bind
2747     hollywood.bind
2748     latinkeys.bind
2749     mac.bind
2750     math.bind
2751     menus.bind
2752     sciword.bind
2753     xemacs.bind
2754 ''')
2755
2756
2757 lib_bind_fi_files = Split('''
2758     menus.bind
2759 ''')
2760
2761
2762 lib_bind_sv_files = Split('''
2763     menus.bind
2764 ''')
2765
2766
2767 lib_bind_pt_files = Split('''
2768     menus.bind
2769 ''')
2770
2771
2772 lib_bind_de_files = Split('''
2773     menus.bind
2774 ''')
2775
2776
2777 boost_extra_files = Split('''
2778     ChangeLog
2779     LICENSE_1_0.txt
2780     Makefile.am
2781 ''')
2782
2783
2784 boost_libs_extra_files = Split('''
2785     Makefile.am
2786     README
2787 ''')
2788
2789
2790 boost_libs_signals_extra_files = Split('''
2791     Makefile.am
2792     signals.vcproj
2793 ''')
2794
2795
2796 boost_libs_signals_src_files = Split('''
2797     connection.cpp
2798     named_slot_map.cpp
2799     signal_base.cpp
2800     slot.cpp
2801     trackable.cpp
2802 ''')
2803
2804
2805 boost_libs_signals_src_extra_files = Split('''
2806     Makefile.am
2807     pch.h
2808 ''')
2809
2810
2811 boost_libs_regex_extra_files = Split('''
2812     Makefile.am
2813     regex.vcproj
2814 ''')
2815
2816
2817 boost_libs_regex_src_files = Split('''
2818     c_regex_traits.cpp
2819     cpp_regex_traits.cpp
2820     cregex.cpp
2821     fileiter.cpp
2822     instances.cpp
2823     posix_api.cpp
2824     regex.cpp
2825     regex_debug.cpp
2826     regex_raw_buffer.cpp
2827     regex_traits_defaults.cpp
2828     w32_regex_traits.cpp
2829     wide_posix_api.cpp
2830     winstances.cpp
2831 ''')
2832
2833
2834 boost_libs_regex_src_extra_files = Split('''
2835     Makefile.am
2836     pch.h
2837 ''')
2838
2839
2840 boost_libs_filesystem_extra_files = Split('''
2841     Makefile.am
2842     filesystem.vcproj
2843 ''')
2844
2845
2846 boost_libs_filesystem_src_files = Split('''
2847     exception.cpp
2848     operations.cpp
2849     path.cpp
2850     portability.cpp
2851 ''')
2852
2853
2854 boost_libs_filesystem_src_extra_files = Split('''
2855     Makefile.am
2856     pch.h
2857 ''')
2858
2859
2860 boost_libs_iostreams_extra_files = Split('''
2861     Makefile.am
2862 ''')
2863
2864
2865 boost_libs_iostreams_src_files = Split('''
2866     file_descriptor.cpp
2867     mapped_file.cpp
2868     zlib.cpp
2869 ''')
2870
2871
2872 boost_libs_iostreams_src_extra_files = Split('''
2873     Makefile.am
2874     pch.h
2875 ''')
2876
2877
2878 development_Win32_packaging_installer = Split('''
2879     license.rtf
2880     lyx.nsi
2881     settings.nsh
2882     settings.user.nsh
2883 ''')
2884
2885
2886 development_Win32_packaging_installer_components = Split('''
2887     configure.nsh
2888     core.nsh
2889     dicts.nsh
2890     external.nsh
2891     langselect.nsh
2892     reinstall.nsh
2893     uninstall.nsh
2894     user.nsh
2895     viewer.nsh
2896 ''')
2897
2898
2899 development_Win32_packaging_installer_dialogs = Split('''
2900     external.ini
2901     langselect.ini
2902     reinstall.ini
2903     user.ini
2904     viewer.ini
2905 ''')
2906
2907
2908 development_Win32_packaging_installer_graphics = Split('''
2909     header.bmp
2910     wizard.bmp
2911 ''')
2912
2913
2914 development_Win32_packaging_installer_include = Split('''
2915     declarations.nsh
2916     detection.nsh
2917     filelists.nsh
2918     gui.nsh
2919     init.nsh
2920     lang.nsh
2921     windows.nsh
2922 ''')
2923
2924
2925 development_Win32_packaging_installer_lang = Split('''
2926     english.nsh
2927     french.nsh
2928     german.nsh
2929     italian.nsh
2930 ''')
2931