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