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