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