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