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