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