]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
Greetings from gimp.
[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-goto_0.png
1349     bookmark-save.png
1350     box-insert.png
1351     break-line.png
1352     buffer-close.png
1353     buffer-export_dvi.png
1354     buffer-export_latex.png
1355     buffer-export_pdf2.png
1356     buffer-export_ps.png
1357     buffer-export_text.png
1358     buffer-new.png
1359     buffer-reload.png
1360     buffer-update_dvi.png
1361     buffer-update_pdf2.png
1362     buffer-update_ps.png
1363     buffer-view_dvi.png
1364     buffer-view_pdf2.png
1365     buffer-view_ps.png
1366     buffer-write-as.png
1367     buffer-write.png
1368     build-program.png
1369     change-accept.png
1370     change-next.png
1371     change-reject.png
1372     changes-merge.png
1373     changes-output.png
1374     changes-track.png
1375     closetab.png
1376     close-tab-group.png
1377     copy.png
1378     cut.png
1379     demote.png
1380     depth-decrement.png
1381     depth-increment.png
1382     dialog-preferences.png
1383     dialog-show-new-inset_citation.png
1384     dialog-show-new-inset_graphics.png
1385     dialog-show-new-inset_include.png
1386     dialog-show-new-inset_ref.png
1387     dialog-show_character.png
1388     dialog-show_findreplace.png
1389     dialog-show_mathdelimiter.png
1390     dialog-show_mathmatrix.png
1391     dialog-show_print.png
1392     dialog-show_spellchecker.png
1393     dialog-toggle_toc.png
1394     down.png
1395     ert-insert.png
1396     file-open.png
1397     float-insert_figure.png
1398     float-insert_table.png
1399     font-bold.png
1400     font-emph.png
1401     textstyle-apply.png
1402     font-noun.png
1403     font-sans.png
1404     footnote-insert.png
1405     href-insert.png
1406     hidetab.png
1407     index-insert.png
1408     label-insert.png
1409     layout-document.png
1410     layout-paragraph.png
1411     layout.png
1412     layout_Description.png
1413     layout_Enumerate.png
1414     layout_Itemize.png
1415     layout_List.png
1416     layout_LyX-Code.png
1417     layout_Scrap.png
1418     layout_Section.png
1419     lyx-quit.png
1420     lyx.png
1421     vc-check-in.png
1422     vc-check-out.png
1423     dialog-show_vclog.png
1424     vc-register.png
1425     vc-revert.png
1426     marginalnote-insert.png
1427     math-display.png
1428     math-macro-add-greedy-optional-param.png
1429     math-macro-add-optional-param.png
1430     math-macro-add-param.png
1431     math-macro-append-greedy-param.png
1432     math-macro-make-nonoptional.png
1433     math-macro-make-optional.png
1434     math-macro-remove-greedy-param.png
1435     math-macro-remove-optional-param.png
1436     math-macro-remove-param.png
1437     math-macro_newmacroname_newcommand.png
1438     math-matrix.png
1439     math-mode.png
1440     math-subscript.png
1441     math-superscript.png
1442     nomencl-insert.png
1443     note-insert.png
1444     note-next.png
1445     paste.png
1446     promote.png
1447     psnfss1.png
1448     psnfss2.png
1449     psnfss3.png
1450     psnfss4.png
1451     redo.png
1452     reload.png
1453     split-view_horizontal.png
1454     split-view_vertical.png
1455     standard.png
1456     tabular-feature_m-align-center.png
1457     tabular-feature_m-align-left.png
1458     tabular-feature_m-align-right.png
1459     tabular-feature_append-column.png
1460     tabular-feature_append-row.png
1461     tabular-feature_delete-column.png
1462     tabular-feature_delete-row.png
1463     tabular-feature_multicolumn.png
1464     tabular-feature_set-all-lines.png
1465     tabular-feature_set-border-lines.png
1466     tabular-feature_set-longtabular.png
1467     tabular-feature_set-rotate-cell.png
1468     tabular-feature_set-rotate-tabular.png
1469     tabular-feature_toggle-line-bottom.png
1470     tabular-feature_toggle-line-left.png
1471     tabular-feature_toggle-line-right.png
1472     tabular-feature_toggle-line-top.png
1473     tabular-feature_toggle-rotate-cell.png
1474     tabular-feature_toggle-rotate-tabular.png
1475     tabular-feature_unset-all-lines.png
1476     tabular-feature_m-valign-bottom.png
1477     tabular-feature_m-valign-middle.png
1478     tabular-feature_m-valign-top.png
1479     tabular-insert.png
1480     thesaurus-entry.png
1481     toolbar-toggle_math.png
1482     toolbar-toggle_math_panels.png
1483     toolbar-toggle_table.png
1484     undo.png
1485     unknown.png
1486     up.png
1487     url-insert.png
1488 ''')
1489
1490
1491 lib_images_extra_files = Split('''
1492     README
1493     font-smallcaps.png
1494 ''')
1495
1496
1497 lib_images_math_files = Split('''
1498     Bbbk.png
1499     Finv.png
1500     Game.png
1501     Im.png
1502     Lleftarrow.png
1503     Lsh.png
1504     Re.png
1505     Rrightarrow.png
1506     Rsh.png
1507     Vvdash.png
1508     acute.png
1509     aleph.png
1510     alpha.png
1511     amalg.png
1512     angle.png
1513     approx.png
1514     approxeq.png
1515     asymp.png
1516     backepsilon.png
1517     backprime.png
1518     backsim.png
1519     backsimeq.png
1520     backslash.png
1521     bar.png
1522     bars.png
1523     barwedge.png
1524     because.png
1525     beta.png
1526     beth.png
1527     between.png
1528     bigcap.png
1529     bigcirc.png
1530     bigcup.png
1531     bigodot.png
1532     bigoplus.png
1533     bigotimes.png
1534     bigsqcup.png
1535     bigstar.png
1536     bigtriangledown.png
1537     bigtriangleup.png
1538     biguplus.png
1539     bigvee.png
1540     bigwedge.png
1541     blacklozenge.png
1542     blacksquare.png
1543     blacktriangle.png
1544     blacktriangledown.png
1545     blacktriangleleft.png
1546     blacktriangleright.png
1547     bot.png
1548     bowtie.png
1549     boxdot.png
1550     boxminus.png
1551     boxplus.png
1552     boxtimes.png
1553     breve.png
1554     bullet.png
1555     bumpeq.png
1556     bumpeq2.png
1557     cap.png
1558     cap2.png
1559     cases.png
1560     cdot.png
1561     cdots.png
1562     centerdot.png
1563     check.png
1564     chi.png
1565     circ.png
1566     circeq.png
1567     circlearrowleft.png
1568     circlearrowright.png
1569     circledS.png
1570     circledast.png
1571     circledcirc.png
1572     circleddash.png
1573     clubsuit.png
1574     complement.png
1575     cong.png
1576     coprod.png
1577     cup.png
1578     cup2.png
1579     curlyeqprec.png
1580     curlyeqsucc.png
1581     curlyvee.png
1582     curlywedge.png
1583     curvearrowleft.png
1584     curvearrowright.png
1585     dagger.png
1586     daleth.png
1587     dashleftarrow.png
1588     dashrightarrow.png
1589     dashv.png
1590     ddagger.png
1591     ddot.png
1592     ddots.png
1593     delim.png
1594     delta.png
1595     delta2.png
1596     diagdown.png
1597     diagup.png
1598     diamond.png
1599     diamondsuit.png
1600     digamma.png
1601     div.png
1602     divideontimes.png
1603     dot.png
1604     doteq.png
1605     doteqdot.png
1606     dotplus.png
1607     dotsint.png
1608     dotsintop.png
1609     doublebarwedge.png
1610     downarrow.png
1611     downarrow2.png
1612     downdownarrows.png
1613     downharpoonleft.png
1614     downharpoonright.png
1615     ell.png
1616     empty.png
1617     emptyset.png
1618     epsilon.png
1619     eqcirc.png
1620     eqslantgtr.png
1621     eqslantless.png
1622     equation.png
1623     equiv.png
1624     eta.png
1625     eth.png
1626     exists.png
1627     fallingdotseq.png
1628     fint.png
1629     fintop.png
1630     flat.png
1631     font.png
1632     forall.png
1633     frac-square.png
1634     frac.png
1635     frown.png
1636     functions.png
1637     gamma.png
1638     gamma2.png
1639     geq.png
1640     geqq.png
1641     geqslant.png
1642     gg.png
1643     ggg.png
1644     gimel.png
1645     gnapprox.png
1646     gneq.png
1647     gneqq.png
1648     gnsim.png
1649     grave.png
1650     gtrapprox.png
1651     gtrdot.png
1652     gtreqless.png
1653     gtreqqless.png
1654     gtrless.png
1655     gtrsim.png
1656     gvertneqq.png
1657     hat.png
1658     hbar.png
1659     heartsuit.png
1660     hookleftarrow.png
1661     hookrightarrow.png
1662     hphantom.png
1663     hslash.png
1664     iiiint.png
1665     iiiintop.png
1666     iiint.png
1667     iiintop.png
1668     iint.png
1669     iintop.png
1670     imath.png
1671     in.png
1672     infty.png
1673     int.png
1674     intercal.png
1675     intop.png
1676     iota.png
1677     jmath.png
1678     kappa.png
1679     lambda.png
1680     lambda2.png
1681     landdownint.png
1682     landdownintop.png
1683     landupint.png
1684     landupintop.png
1685     langle.png
1686     lbrace.png
1687     lbrace_rbrace.png
1688     lbracket.png
1689     lbracket_rbracket.png
1690     lceil.png
1691     lceil_rceil.png
1692     ldots.png
1693     leftarrow.png
1694     leftarrow2.png
1695     leftarrowtail.png
1696     leftharpoondown.png
1697     leftharpoonup.png
1698     leftleftarrows.png
1699     leftrightarrow.png
1700     leftrightarrow2.png
1701     leftrightarrows.png
1702     leftrightharpoons.png
1703     leftrightsquigarrow.png
1704     leftthreetimes.png
1705     leq.png
1706     leqq.png
1707     leqslant.png
1708     lessapprox.png
1709     lessdot.png
1710     lesseqgtr.png
1711     lesseqqgtr.png
1712     lessgtr.png
1713     lesssim.png
1714     lfloor.png
1715     lfloor_rfloor.png
1716     ll.png
1717     llcorner.png
1718     lll.png
1719     lnapprox.png
1720     lneq.png
1721     lneqq.png
1722     lnsim.png
1723     longleftarrow.png
1724     longleftarrow2.png
1725     longleftrightarrow.png
1726     longleftrightarrow2.png
1727     longmapsto.png
1728     longrightarrow.png
1729     longrightarrow2.png
1730     looparrowleft.png
1731     looparrowright.png
1732     lozenge.png
1733     lparen.png
1734     lparen_rparen.png
1735     lrcorner.png
1736     ltimes.png
1737     lvertneqq.png
1738     mapsto.png
1739     mathbb_C.png
1740     mathbb_H.png
1741     mathbb_N.png
1742     mathbb_Q.png
1743     mathbb_R.png
1744     mathbb_Z.png
1745     mathcal_F.png
1746     mathcal_H.png
1747     mathcal_L.png
1748     mathcal_O.png
1749     mathcircumflex.png
1750     mathrm_T.png
1751     matrix.png
1752     measuredangle.png
1753     mho.png
1754     mid.png
1755     models.png
1756     mp.png
1757     mu.png
1758     multimap.png
1759     nabla.png
1760     natural.png
1761     ncong.png
1762     nearrow.png
1763     neg.png
1764     neq.png
1765     nexists.png
1766     ngeq.png
1767     ngeqq.png
1768     ngeqslant.png
1769     ngtr.png
1770     ni.png
1771     nleftarrow.png
1772     nleftarrow2.png
1773     nleftrightarrow.png
1774     nleftrightarrow2.png
1775     nleq.png
1776     nleqq.png
1777     nleqslant.png
1778     nless.png
1779     nmid.png
1780     notin.png
1781     nparallel.png
1782     nprec.png
1783     npreceq.png
1784     nrightarrow.png
1785     nrightarrow2.png
1786     nshortmid.png
1787     nshortparallel.png
1788     nsim.png
1789     nsubseteq.png
1790     nsucc.png
1791     nsucceq.png
1792     nsupseteq.png
1793     nsupseteqq.png
1794     ntriangleleft.png
1795     ntrianglelefteq.png
1796     ntriangleright.png
1797     ntrianglerighteq.png
1798     nu.png
1799     nvdash.png
1800     nvdash2.png
1801     nvdash3.png
1802     nwarrow.png
1803     odot.png
1804     oiint.png
1805     oiintop.png
1806     oint.png
1807     ointclockwise.png
1808     ointclockwiseop.png
1809     ointctrclockwise.png
1810     ointctrclockwiseop.png
1811     ointop.png
1812     omega.png
1813     omega2.png
1814     ominus.png
1815     oplus.png
1816     oslash.png
1817     otimes.png
1818     overbrace.png
1819     overleftarrow.png
1820     overleftrightarrow.png
1821     overline.png
1822     overrightarrow.png
1823     overset.png
1824     parallel.png
1825     partial.png
1826     perp.png
1827     phantom.png
1828     phi.png
1829     phi2.png
1830     pi.png
1831     pi2.png
1832     pitchfork.png
1833     pm.png
1834     prec.png
1835     precapprox.png
1836     preccurlyeq.png
1837     preceq.png
1838     precnapprox.png
1839     precnsim.png
1840     precsim.png
1841     prime.png
1842     prod.png
1843     propto.png
1844     psi.png
1845     psi2.png
1846     rangle.png
1847     rbrace.png
1848     rbracket.png
1849     rceil.png
1850     rfloor.png
1851     rho.png
1852     rightarrow.png
1853     rightarrow2.png
1854     rightarrowtail.png
1855     rightharpoondown.png
1856     rightharpoonup.png
1857     rightleftarrows.png
1858     rightleftharpoons.png
1859     rightrightarrows.png
1860     rightsquigarrow.png
1861     rightthreetimes.png
1862     risingdotseq.png
1863     root.png
1864     rparen.png
1865     rtimes.png
1866     searrow.png
1867     setminus.png
1868     sharp.png
1869     shortmid.png
1870     shortparallel.png
1871     sigma.png
1872     sigma2.png
1873     sim.png
1874     simeq.png
1875     slash.png
1876     smallfrown.png
1877     smallsetminus.png
1878     smallsmile.png
1879     smile.png
1880     space.png
1881     spadesuit.png
1882     sphericalangle.png
1883     sqcap.png
1884     sqcup.png
1885     sqiint.png
1886     sqiintop.png
1887     sqint.png
1888     sqintop.png
1889     sqrt-square.png
1890     sqrt.png
1891     sqsubset.png
1892     sqsubseteq.png
1893     sqsupset.png
1894     sqsupseteq.png
1895     square.png
1896     star.png
1897     style.png
1898     style.png
1899     sub.png
1900     subset.png
1901     subset2.png
1902     subseteq.png
1903     subseteqq.png
1904     subsetneq.png
1905     subsetneqq.png
1906     succ.png
1907     succapprox.png
1908     succcurlyeq.png
1909     succeq.png
1910     succnapprox.png
1911     succnsim.png
1912     succsim.png
1913     sum.png
1914     super.png
1915     supset.png
1916     supset2.png
1917     supseteq.png
1918     supseteqq.png
1919     supsetneq.png
1920     supsetneqq.png
1921     surd.png
1922     swarrow.png
1923     tau.png
1924     textrm_AA.png
1925     textrm_O.png
1926     therefore.png
1927     theta.png
1928     theta2.png
1929     thickapprox.png
1930     thicksim.png
1931     tilde.png
1932     times.png
1933     top.png
1934     triangle.png
1935     triangledown.png
1936     triangleleft.png
1937     trianglelefteq.png
1938     triangleq.png
1939     triangleright.png
1940     trianglerighteq.png
1941     twoheadleftarrow.png
1942     twoheadrightarrow.png
1943     ulcorner.png
1944     underbrace.png
1945     underleftarrow.png
1946     underleftrightarrow.png
1947     underline.png
1948     underrightarrow.png
1949     underscore.png
1950     underset.png
1951     uparrow.png
1952     uparrow2.png
1953     updownarrow.png
1954     updownarrow2.png
1955     upharpoonleft.png
1956     upharpoonright.png
1957     uplus.png
1958     upsilon.png
1959     upsilon2.png
1960     upuparrows.png
1961     urcorner.png
1962     varepsilon.png
1963     varkappa.png
1964     varnothing.png
1965     varphi.png
1966     varpi.png
1967     varpropto.png
1968     varrho.png
1969     varsigma.png
1970     varsubsetneq.png
1971     varsubsetneqq.png
1972     varsupsetneq.png
1973     varsupsetneqq.png
1974     vartheta.png
1975     vartriangle.png
1976     vartriangleleft.png
1977     vartriangleright.png
1978     vdash.png
1979     vdash2.png
1980     vdash3.png
1981     vdots.png
1982     vec.png
1983     vee.png
1984     veebar.png
1985     vert.png
1986     vert2.png
1987     vphantom.png
1988     wedge.png
1989     widehat.png
1990     widetilde.png
1991     wp.png
1992     wr.png
1993     xi.png
1994     xi2.png
1995     zeta.png
1996 ''')
1997
1998
1999 lib_images_math_extra_files = Split('''
2000     ams_arrows.png
2001     ams_misc.png
2002     ams_nrel.png
2003     ams_ops.png
2004     ams_rel.png
2005     arrows.png
2006     bop.png
2007     brel.png
2008     deco.png
2009     deco.png
2010     delim.png
2011     delim0.png
2012     delim1.png
2013     dots.png
2014     font.png
2015     functions.png
2016     greek.png
2017     misc.png
2018     varsz.png
2019 ''')
2020
2021
2022 lib_images_commands_files = Split('''
2023 ''')
2024
2025
2026 lib_images_attic_extra_files = Split('''
2027     dialog-show_mathpanel.png
2028 ''')
2029
2030
2031 lib_tex_files = Split('''
2032     broadway.cls
2033     hollywood.cls
2034     lyxchess.sty
2035     lyxskak.sty
2036     revtex.cls
2037 ''')
2038
2039
2040 lib_doc_files = Split('''
2041     Customization.lyx
2042     DocStyle.lyx
2043     DummyDocument1.lyx
2044     DummyDocument2.lyx
2045     DummyTextDocument.txt
2046     EmbeddedObjects.lyx
2047     Extended.lyx
2048     Formula-numbering.lyx
2049     Intro.lyx
2050     LaTeXConfig.lyx
2051     LFUNs.lyx
2052     Math.lyx
2053     Shortcuts.lyx
2054     Tutorial.lyx
2055     UserGuide.lyx
2056 ''')
2057
2058
2059 lib_doc_biblio_files = Split('''
2060     alphadin.bst
2061     LyXDocs.bib
2062 ''')
2063
2064
2065 lib_doc_clipart_files = Split('''
2066     Abstract.pdf
2067     BoxInsetDefaultQt4.png
2068     ChangesToolbar.png
2069     ChildDocumentQt4.png
2070     CommentNoteImageQt4.png
2071     ERT.png
2072     ExternalMaterialQt4.png
2073     ExtraToolbar.png
2074     GreyedOutNoteImageQt4.png
2075     LaTeX.png
2076     LyXNoteImageQt4.png
2077     SpaceMarker.png
2078     StandardToolbar.png
2079     ToolbarEnvBox.png
2080     endnotes.pdf
2081     escher-lsd.eps
2082     floatQt4.png
2083     footnoteQt4.png
2084     labelQt4.png
2085     macrobox.png
2086     MacroToolbar.png
2087     macrouse.png
2088     mbox.png
2089     mobius.eps
2090     platypus.eps
2091     referenceQt4.png
2092     ViewToolbar.png
2093     with_fntright.pdf
2094     without_fntright.pdf
2095 ''')
2096
2097
2098 lib_doc_extra_files = Split('''
2099     Makefile.am
2100     README.Documentation
2101 ''')
2102
2103
2104 lib_doc_ca_files = Split('''
2105     Intro.lyx
2106 ''')
2107
2108
2109 lib_doc_cs_files = Split('''
2110     Tutorial.lyx
2111 ''')
2112
2113
2114 lib_doc_de_files = Split('''
2115     Customization.lyx
2116     DummyDocument1.lyx
2117     DummyDocument2.lyx
2118     DummyTextDocument.txt
2119     EmbeddedObjects.lyx
2120     Extended.lyx
2121     Formelnummerierung.lyx
2122     Intro.lyx
2123     Math.lyx
2124     Shortcuts.lyx
2125     Tutorial.lyx
2126     UserGuide.lyx
2127 ''')
2128
2129
2130 lib_doc_de_clipart_files = Split('''
2131     ERT.png
2132     ExternesMaterialQt4.png
2133     FussnoteQt4.png
2134     GleitobjektQt4.png
2135     GrauschriftNotizQt4.png
2136     KommentarQt4.png
2137     LyXNotizQt4.png
2138     Marke.png
2139     Querverweis.png
2140     StandardBoxQt4.png
2141     UnterdokumentQt4.png
2142 ''')
2143
2144
2145 lib_doc_da_files = Split('''
2146     Intro.lyx
2147 ''')
2148
2149
2150 lib_doc_es_files = Split('''
2151     Customization.lyx
2152     DocumentoPostizo1.lyx
2153     DocumentoPostizo2.lyx
2154     DocumentoTextoPostizo.txt
2155     EmbeddedObjects.lyx
2156     Extended.lyx
2157     Formula-numbering.lyx
2158     Intro.lyx
2159     Math.lyx
2160     Shortcuts.lyx
2161     Tutorial.lyx
2162     UserGuide.lyx
2163 ''')
2164
2165
2166 lib_doc_es_clipart_files = Split('''
2167     ComentNotaImagenQt4.png
2168     CuadroMinipagQt4.png
2169     DocumentoHijoQt4.png
2170     GrisNotaImagenQt4.png
2171     MaterialExternoQt4.png
2172     NotaLyXImagenQt4.png
2173     Resumen.pdf
2174     es_ERT.png
2175     es_ToolbarEnvBox.png
2176     etiquetaQt4.png
2177     flotanteQt4.png
2178     notapieQt4.png
2179     referenciaQt4.png
2180 ''')
2181
2182
2183 lib_doc_eu_files = Split('''
2184     Customization.lyx
2185     Extended.lyx
2186     Intro.lyx
2187     Tutorial.lyx
2188     UserGuide.lyx
2189 ''')
2190
2191
2192 lib_doc_fr_files = Split('''
2193     Customization.lyx
2194     DocumentBidon1.lyx
2195     DocumentBidon2.lyx
2196     DocumentTexteBidon.txt
2197     EmbeddedObjects.lyx
2198     Extended.lyx
2199     Formula-numbering.lyx
2200     Intro.lyx
2201     Math.lyx
2202     Tutorial.lyx
2203     UserGuide.lyx
2204 ''')
2205
2206
2207 lib_doc_fr_clipart_files = Split('''
2208     BoxInsetDefaultQt4.png
2209     ChildDocumentQt4.png
2210     CommentNoteImageQt4.png
2211     GreyedOutNoteImageQt4.png
2212     LyXNoteImageQt4.png
2213     floatQt4.png
2214     footnoteQt4.png
2215     labelQt4.png
2216 ''')
2217
2218
2219 lib_doc_gl_files = Split('''
2220     Intro.lyx
2221     Tutorial.lyx
2222 ''')
2223
2224
2225 lib_doc_he_files = Split('''
2226     Intro.lyx
2227     Tutorial.lyx
2228 ''')
2229
2230
2231 lib_doc_hu_files = Split('''
2232     Intro.lyx
2233     Tutorial.lyx
2234 ''')
2235
2236
2237 lib_doc_it_files = Split('''
2238     Customization.lyx
2239     Intro.lyx
2240     Tutorial.lyx
2241     UserGuide.lyx
2242 ''')
2243
2244
2245 lib_doc_it_clipart_files = Split('''
2246     it_footnoteQt4.png
2247     it_referenceQt4.png
2248 ''')
2249
2250
2251 lib_doc_ja_files = Split('''
2252     Extended.lyx
2253     Intro.lyx
2254     LaTeXConfig.lyx
2255     Shortcuts.lyx
2256     Tutorial.lyx
2257     UserGuide.lyx
2258 ''')
2259
2260
2261 lib_doc_ja_clipart_files = Split('''
2262     floatQt4.png
2263     footnoteQt4.png
2264     referenceQt4.png
2265     ERT.png
2266     ToolbarEnvBox.png
2267 ''')
2268
2269
2270 lib_doc_nb_files = Split('''
2271     Intro.lyx
2272 ''')
2273
2274
2275 lib_doc_nl_files = Split('''
2276     Intro.lyx
2277     Tutorial.lyx
2278 ''')
2279
2280
2281 lib_doc_pl_files = Split('''
2282     Extended.lyx
2283     Intro.lyx
2284     Tutorial.lyx
2285 ''')
2286
2287
2288 lib_doc_pt_files = Split('''
2289     Intro.lyx
2290     Tutorial.lyx
2291 ''')
2292
2293
2294 lib_doc_ro_files = Split('''
2295     Intro.lyx
2296 ''')
2297
2298
2299 lib_doc_ru_files = Split('''
2300     Intro.lyx
2301     Tutorial.lyx
2302 ''')
2303
2304
2305 lib_doc_sl_files = Split('''
2306     Intro.lyx
2307     Tutorial.lyx
2308 ''')
2309
2310
2311 lib_doc_sk_files = Split('''
2312     Tutorial.lyx
2313     UserGuide.lyx
2314 ''')
2315
2316
2317 lib_doc_sv_files = Split('''
2318     Intro.lyx
2319     Tutorial.lyx
2320 ''')
2321
2322
2323 lib_doc_uk_files = Split('''
2324     Intro.lyx
2325 ''')
2326
2327
2328 lib_doc_uk_clipart_files = Split('''
2329     FootnoteQT4.png
2330 ''')
2331
2332
2333 lib_examples_files = Split('''
2334     aa_sample.lyx
2335     aas_sample.lyx
2336     achemso.lyx
2337     addressExample.adr
2338     amsart-test.lyx
2339     amsbook-test.lyx
2340     armenian-article.lyx
2341     beamer-g4-mask.jpg
2342     beamer-g4.jpg
2343     beamer-icsi-logo.pdf
2344     beamer-knight1-mask.png
2345     beamer-knight1.png
2346     beamer-knight2-mask.png
2347     beamer-knight2.png
2348     beamer-knight3-mask.png
2349     beamer-knight3.png
2350     beamer-knight4-mask.png
2351     beamer-knight4.png
2352     beamerlyxexample1.lyx
2353     biblioExample.bib
2354     Braille.lyx
2355     chess-article.lyx
2356     chessgame.lyx
2357     CV-image.eps
2358     CV-image.png
2359     docbook_article.lyx
2360     europeCV.lyx
2361     example_lyxified.lyx
2362     example_raw.lyx
2363     Foils.lyx
2364     iecc05.fen
2365     iecc07.fen
2366     iecc12.fen
2367     ItemizeBullets.lyx
2368     landslide.lyx
2369     linguistics.lyx
2370     listerrors.lyx
2371     Literate.lyx
2372     modernCV.lyx
2373     multicol.lyx
2374     noweb2lyx.lyx
2375     powerdot-example.lyx
2376     recipebook.lyx
2377     script_form.lyx
2378     seminar.lyx
2379     serial_letter1.lyx
2380     serial_letter2.lyx
2381     serial_letter3.lyx
2382     simplecv.lyx
2383     splash.lyx
2384     xyfigure.png
2385     xypic.lyx
2386 ''')
2387
2388
2389 lib_examples_ca_files = Split('''
2390     ItemizeBullets.lyx
2391     mathed.lyx
2392     splash.lyx
2393 ''')
2394
2395
2396 lib_examples_cs_files = Split('''
2397     splash.lyx
2398 ''')
2399
2400
2401 lib_examples_da_files = Split('''
2402     splash.lyx
2403 ''')
2404
2405
2406 lib_examples_de_files = Split('''
2407     beispiel_gelyxt.lyx
2408     beispiel_roh.lyx
2409     Braille.lyx
2410     Dezimal.lyx
2411     ItemizeBullets.lyx
2412     Lebenslauf.lyx
2413     multicol.lyx
2414     serienbrief1.lyx
2415     serienbrief2.lyx
2416     serienbrief3.lyx
2417     splash.lyx
2418 ''')
2419
2420
2421 lib_examples_fa_files = Split('''
2422     splash.lyx
2423 ''')
2424
2425
2426 lib_examples_fr_files = Split('''
2427     AlignementDecimal.lyx
2428     Foils.lyx
2429     ListesPuces.lyx
2430     exemple_brut.lyx
2431     exemple_lyxifie.lyx
2432     multicol.lyx
2433     simplecv.lyx
2434     splash.lyx
2435 ''')
2436
2437
2438 lib_examples_es_files = Split('''
2439     Braille.lyx
2440     ejemplo_con_lyx.lyx
2441     ejemplo_sin_lyx.lyx
2442     ItemizeBullets.lyx
2443     multicol.lyx
2444     splash.lyx
2445 ''')
2446
2447
2448 lib_examples_eu_files = Split('''
2449     adibide_gordina.lyx
2450     adibide_lyx-atua.lyx
2451     splash.lyx
2452 ''')
2453
2454
2455 lib_examples_gl_files = Split('''
2456     exemplo_bruto.lyx
2457     exemplo_lyxificado.lyx
2458     splash.lyx
2459 ''')
2460
2461
2462 lib_examples_he_files = Split('''
2463     example_lyxified.lyx
2464     example_raw.lyx
2465     splash.lyx
2466 ''')
2467
2468
2469 lib_examples_hu_files = Split('''
2470     example_lyxified.lyx
2471     example_raw.lyx
2472     splash.lyx
2473 ''')
2474
2475
2476 lib_examples_it_files = Split('''
2477     ItemizeBullets.lyx
2478     splash.lyx
2479 ''')
2480
2481
2482 lib_examples_ja_files = Split('''
2483     splash.lyx
2484 ''')
2485
2486
2487 lib_examples_nl_files = Split('''
2488     multicol.lyx
2489     opsommingstekens.lyx
2490     splash.lyx
2491     voorbeeld_ruw.lyx
2492     voorbeeld_verlyxt.lyx
2493 ''')
2494
2495
2496 lib_examples_pl_files = Split('''
2497     splash.lyx
2498 ''')
2499
2500
2501 lib_examples_pt_files = Split('''
2502     splash.lyx
2503 ''')
2504
2505
2506 lib_examples_ro_files = Split('''
2507     splash.lyx
2508 ''')
2509
2510
2511 lib_examples_ru_files = Split('''
2512     splash.lyx
2513 ''')
2514
2515
2516 lib_examples_sl_files = Split('''
2517     primer_lyxan.lyx
2518     primer_surov.lyx
2519     splash.lyx
2520 ''')
2521
2522
2523 lib_lyx2lyx_files = Split('''
2524     LyX.py
2525     generate_encoding_info.py
2526     lyx2lyx
2527     lyx2lyx_lang.py
2528     lyx_0_06.py
2529     lyx_0_08.py
2530     lyx_0_10.py
2531     lyx_0_12.py
2532     lyx_1_0.py
2533     lyx_1_1.py
2534     lyx_1_1_5.py
2535     lyx_1_1_6_0.py
2536     lyx_1_1_6_3.py
2537     lyx_1_2.py
2538     lyx_1_3.py
2539     lyx_1_4.py
2540     lyx_1_5.py
2541     lyx_1_6.py
2542     lyx_2_0.py
2543     parser_tools.py
2544     profiling.py
2545     test_parser_tools.py
2546 ''')
2547
2548
2549 lib_lyx2lyx_extra_files = Split('''
2550     Makefile.am
2551     lyx2lyx_version.py.in
2552 ''')
2553
2554
2555 lib_layouts_files = Split('''
2556     aa.layout
2557     aapaper.layout
2558     aastex.layout
2559     achemso.layout
2560     acmsiggraph.layout
2561     agu-dtd.layout
2562     agums.layout
2563     amsart.layout
2564     amsbook.layout
2565     apa.layout
2566     arab-article.layout
2567     armenian-article.layout
2568     article.layout
2569     article-beamer.layout
2570     beamer.layout
2571     book.layout
2572     broadway.layout
2573     chess.layout
2574     cl2emult.layout
2575     dinbrief.layout
2576     docbook-book.layout
2577     docbook-chapter.layout
2578     docbook-section.layout
2579     docbook.layout
2580     dtk.layout
2581     egs.layout
2582     elsart.layout
2583     elsarticle.layout
2584     entcs.layout
2585     europecv.layout
2586     extarticle.layout
2587     extbook.layout
2588     extletter.layout
2589     extreport.layout
2590     foils.layout
2591     g-brief-de.layout
2592     g-brief-en.layout
2593     g-brief2.layout
2594     heb-article.layout
2595     heb-letter.layout
2596     hollywood.layout
2597     IEEEtran.layout
2598     ijmpc.layout
2599     ijmpd.layout
2600     iopart.layout
2601     isprs.layout
2602     jarticle.layout
2603     jbook.layout
2604     jgrga.layout
2605     jreport.layout
2606     jsarticle.layout
2607     jsbook.layout
2608     jss.layout
2609     kluwer.layout
2610     latex8.layout
2611     letter.layout
2612     literate-article.layout
2613     literate-book.layout
2614     literate-report.layout
2615     llncs.layout
2616     ltugboat.layout
2617     manpage.layout
2618     memoir.layout
2619     moderncv.layout
2620     mwart.layout
2621     mwbk.layout
2622     mwrep.layout
2623     paper.layout
2624     powerdot.layout
2625     recipebook.layout
2626     report.layout
2627     revtex.layout
2628     revtex4.layout
2629     scrartcl.layout
2630     scrarticle-beamer.layout
2631     scrbook.layout
2632     scrlettr.layout
2633     scrlttr2.layout
2634     scrreprt.layout
2635     seminar.layout
2636     siamltex.layout
2637     sigplanconf.layout
2638     simplecv.layout
2639     singlecol.layout
2640     slides.layout
2641     spie.layout
2642     svglobal.layout
2643     svglobal3.layout
2644     svjog.layout
2645     svprobth.layout
2646     tarticle.layout
2647     tbook.layout
2648     treport.layout
2649 ''')
2650
2651
2652 lib_layouts_inc_files = Split('''
2653     aapaper.inc
2654     agu_stdclass.inc
2655     agu_stdcounters.inc
2656     agu_stdlists.inc
2657     agu_stdsections.inc
2658     agu_stdtitle.inc
2659     aguplus.inc
2660     amsdefs.inc
2661     db_lyxmacros.inc
2662     db_stdcharstyles.inc
2663     db_stdclass.inc
2664     db_stdcounters.inc
2665     db_stdlayouts.inc
2666     db_stdlists.inc
2667     db_stdsections.inc
2668     db_stdstarsections.inc
2669     db_stdstruct.inc
2670     db_stdtitle.inc
2671     literate-scrap.inc
2672     lyxmacros.inc
2673     numarticle.inc
2674     numreport.inc
2675     numrevtex.inc
2676     scrclass.inc
2677     stdcharstyles.inc
2678     stdclass.inc
2679     stdcounters.inc
2680     stdcustom.inc
2681     stdfloats.inc
2682     stdinsets.inc
2683     stdlayouts.inc
2684     stdletter.inc
2685     stdlists.inc
2686     stdsections.inc
2687     stdstarsections.inc
2688     stdstruct.inc
2689     stdtitle.inc
2690     svjour.inc
2691     theorems.inc
2692     theorems-ams.inc
2693     theorems-order.inc
2694     theorems-proof.inc
2695     theorems-starred.inc
2696     theorems-starred-equivalents.inc
2697 ''')
2698
2699
2700 lib_layouts_module_files = Split('''
2701     braille.module
2702     endnotes.module
2703     foottoend.module
2704     hanging.module
2705     linguistics.module
2706     logicalmkup.module
2707     minimalistic.module
2708     theorems-ams-extended.module
2709     theorems-ams.module
2710     theorems-chap.module
2711     theorems-sec.module
2712     theorems-starred.module
2713     theorems-std.module
2714 ''')
2715
2716 lib_scripts_files = Split('''
2717     TeXFiles.py
2718     clean_dvi.py
2719     convertDefault.py
2720     csv2lyx.py
2721     date.py
2722     ext_copy.py
2723     fen2ascii.py
2724     fig2pdftex.py
2725     fig2pstex.py
2726     fig_copy.py
2727     layout2layout.py
2728     legacy_lyxpreview2ppm.py
2729     listerrors
2730     lyxpreview2bitmap.py
2731     lyxpreview-platex2bitmap.py
2732     lyxpreview_tools.py
2733     tex_copy.py
2734 ''')
2735
2736
2737 lib_bind_files = Split('''
2738     aqua.bind
2739     broadway.bind
2740     cua.bind
2741     cyrkeys.bind
2742     emacs.bind
2743     greekkeys.bind
2744     hollywood.bind
2745     latinkeys.bind
2746     mac.bind
2747     math.bind
2748     menus.bind
2749     sciword.bind
2750     site.bind
2751     xemacs.bind
2752 ''')
2753
2754
2755 lib_bind_fi_files = Split('''
2756     menus.bind
2757 ''')
2758
2759
2760 lib_bind_sv_files = Split('''
2761     menus.bind
2762 ''')
2763
2764
2765 lib_bind_pt_files = Split('''
2766     menus.bind
2767 ''')
2768
2769
2770 lib_bind_de_files = Split('''
2771     menus.bind
2772 ''')
2773
2774
2775 lib_commands_files = Split('''
2776     default.def
2777 ''')
2778
2779
2780 boost_extra_files = Split('''
2781     LICENSE_1_0.txt
2782     Makefile.am
2783 ''')
2784
2785
2786 boost_libs_extra_files = Split('''
2787     Makefile.am
2788     README
2789 ''')
2790
2791
2792 boost_libs_signals_extra_files = Split('''
2793     Makefile.am
2794     signals.vcproj
2795 ''')
2796
2797
2798 boost_libs_signals_src_files = Split('''
2799     connection.cpp
2800     named_slot_map.cpp
2801     signal_base.cpp
2802     slot.cpp
2803     trackable.cpp
2804 ''')
2805
2806
2807 boost_libs_signals_src_extra_files = Split('''
2808     Makefile.am
2809     pch.h
2810 ''')
2811
2812
2813 boost_libs_regex_extra_files = Split('''
2814     Makefile.am
2815     regex.vcproj
2816 ''')
2817
2818
2819 boost_libs_regex_src_files = Split('''
2820     c_regex_traits.cpp
2821     cpp_regex_traits.cpp
2822     cregex.cpp
2823     fileiter.cpp
2824     instances.cpp
2825     posix_api.cpp
2826     regex.cpp
2827     regex_debug.cpp
2828     regex_raw_buffer.cpp
2829     regex_traits_defaults.cpp
2830     w32_regex_traits.cpp
2831     wide_posix_api.cpp
2832     winstances.cpp
2833 ''')
2834
2835
2836 boost_libs_regex_src_extra_files = Split('''
2837     Makefile.am
2838     pch.h
2839 ''')
2840
2841
2842
2843 development_Win32_packaging_installer = Split('''
2844     license.rtf
2845     lyx.nsi
2846     settings.nsh
2847 ''')
2848
2849
2850 development_Win32_packaging_installer_graphics = Split('''
2851     header.bmp
2852     wizard.bmp
2853 ''')
2854
2855
2856 development_Win32_packaging_installer_gui = Split('''
2857     external.nsh
2858     langselect.nsh
2859     reinstall.nsh
2860 ''')
2861
2862
2863 development_Win32_packaging_installer_include = Split('''
2864     declarations.nsh
2865     detection.nsh
2866     dictlist.nsh    
2867     filelist.nsh
2868     gui.nsh
2869     init.nsh
2870     langlist.nsh
2871     nsis.nsh
2872     variables.nsh
2873 ''')
2874
2875
2876 development_Win32_packaging_installer_lang = Split('''
2877     english.nsh
2878     french.nsh
2879     german.nsh
2880     italian.nsh
2881 ''')
2882
2883
2884 development_Win32_packaging_installer_setup = Split('''
2885     configure.nsh
2886     install.nsh
2887     reinstall.nsh
2888 ''')