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