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