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