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