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