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