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