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