mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
fix wrong usage of precompiled headers, now it's really faster, more to come
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15509 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fb00129a12
commit
5c26b24d17
@ -100,14 +100,16 @@ if(pch AND MSVC)
|
||||
macro(lyx_add_msvc_pch _sources)
|
||||
SET_SOURCE_FILES_PROPERTIES(${${_sources}} PROPERTIES COMPILE_FLAGS
|
||||
"/Yuconfig.h /Fp${CMAKE_BINARY_DIR}/config.pch /Fd${CMAKE_BINARY_DIR}/pchlib.pdb")
|
||||
add_definitions(-DLYX_PRECOMPILED_HEADERS)
|
||||
endmacro(lyx_add_msvc_pch)
|
||||
|
||||
configure_file(config.C.cmake ${CMAKE_BINARY_DIR}/config.C)
|
||||
configure_file(pcheaders.h ${CMAKE_BINARY_DIR}/pcheaders.h)
|
||||
SET_SOURCE_FILES_PROPERTIES(${CMAKE_BINARY_DIR}/config.C PROPERTIES COMPILE_FLAGS
|
||||
"/Ycconfig.h /Fp${CMAKE_BINARY_DIR}/config.pch /Fd${CMAKE_BINARY_DIR}/pchlib.pdb")
|
||||
"/Ycconfig.h /Fp${CMAKE_BINARY_DIR}/config.pch /Fd${CMAKE_BINARY_DIR}/pchlib.pdb -DLYX_PRECOMPILED_HEADERS")
|
||||
|
||||
include_directories(${CMAKE_CURRENT_BINARY_DIR} ${TOP_SRC_DIR}/src/support ${ICONV_INCLUDE_DIR})
|
||||
add_library(pchlib STATIC ${CMAKE_BINARY_DIR}/config.C)
|
||||
add_library(pchlib STATIC ${CMAKE_BINARY_DIR}/config.C ${CMAKE_BINARY_DIR}/pcheaders.h)
|
||||
|
||||
set(pchlibname pchlib )
|
||||
set(PRECOMPILED_HEADERS TRUE)
|
||||
|
@ -10,434 +10,3 @@
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
|
||||
//#define LYX_DONT_PRECOMPILE_SRC
|
||||
//#define LYX_DONT_PRECOMPILE_SUPPORT
|
||||
//#define LYX_DONT_PRECOMPILE_INSETS
|
||||
//#define LYX_DONT_PRECOMPILE_MATHED
|
||||
//#define LYX_DONT_PRECOMPILE_FRONTENDS
|
||||
//#define LYX_DONT_PRECOMPILE_CONTROLLERS
|
||||
|
||||
#include <boost/any.hpp>
|
||||
#include <boost/array.hpp>
|
||||
#include <boost/assert.hpp>
|
||||
#include <boost/crc.hpp>
|
||||
#include <boost/cregex.hpp>
|
||||
#include <boost/current_function.hpp>
|
||||
#include <boost/function.hpp>
|
||||
#include <boost/iterator/indirect_iterator.hpp>
|
||||
#include <boost/optional.hpp>
|
||||
#include <boost/regex.hpp>
|
||||
#include <boost/scoped_array.hpp>
|
||||
#include <boost/scoped_ptr.hpp>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <boost/signals/connection.hpp>
|
||||
#include <boost/signal.hpp>
|
||||
#include <boost/signals/trackable.hpp>
|
||||
#include <boost/version.hpp>
|
||||
|
||||
#if BOOST_VERSION < 103300
|
||||
# include <boost/test/detail/nullstream.hpp>
|
||||
#else
|
||||
# include <boost/test/utils/nullstream.hpp>
|
||||
#endif
|
||||
|
||||
#include <boost/tokenizer.hpp>
|
||||
#include <boost/tuple/tuple.hpp>
|
||||
#include <boost/utility.hpp>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cerrno>
|
||||
#include <clocale>
|
||||
#include <csignal>
|
||||
#include <cstddef>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <deque>
|
||||
#include <exception>
|
||||
#include <fstream>
|
||||
#include <functional>
|
||||
#include <iomanip>
|
||||
#include <ios>
|
||||
#include <iosfwd>
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
#include <list>
|
||||
#include <map>
|
||||
#include <queue>
|
||||
#include <set>
|
||||
#include <sstream>
|
||||
#include <stack>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#ifndef LYX_DONT_PRECOMPILE_SRC
|
||||
#include <vspace.h>
|
||||
#include <version.h>
|
||||
#include <vc-backend.h>
|
||||
#include <undo.h>
|
||||
#include <trans_mgr.h>
|
||||
#include <trans_decl.h>
|
||||
#include <trans.h>
|
||||
#include <toc.h>
|
||||
#include <texrow.h>
|
||||
#include <tex-strings.h>
|
||||
#include <tex-accent.h>
|
||||
#include <tabular.h>
|
||||
#include <sgml.h>
|
||||
#include <session.h>
|
||||
#include <rowpainter.h>
|
||||
#include <pspell.h>
|
||||
#include <pariterator.h>
|
||||
#include <paragraph_pimpl.h>
|
||||
#include <paragraph_funcs.h>
|
||||
#include <paragraph.h>
|
||||
#include <paper.h>
|
||||
#include <outputparams.h>
|
||||
#include <output_plaintext.h>
|
||||
#include <output_latex.h>
|
||||
#include <output_docbook.h>
|
||||
#include <output.h>
|
||||
#include <mover.h>
|
||||
#include <metricsinfo.h>
|
||||
#include <messages.h>
|
||||
#include <lyxvc.h>
|
||||
#include <lyxtextclasslist.h>
|
||||
#include <lyxtextclass.h>
|
||||
#include <lyxtext.h>
|
||||
#include <lyxsocket.h>
|
||||
#include <lyxserver.h>
|
||||
#include <lyxrow.h>
|
||||
#include <lyxrc.h>
|
||||
#include <lyxlex_pimpl.h>
|
||||
#include <lyxlex.h>
|
||||
#include <lyxlength.h>
|
||||
#include <lyxlayout_ptr_fwd.h>
|
||||
#include <lyxlayout.h>
|
||||
#include <lyxgluelength.h>
|
||||
#include <lyxfunc.h>
|
||||
#include <lyxfont.h>
|
||||
#include <lyxfind.h>
|
||||
#include <lyx_sty.h>
|
||||
#include <lyx_main.h>
|
||||
#include <lyx_cb.h>
|
||||
#include <lfuns.h>
|
||||
#include <lengthcommon.h>
|
||||
#include <layout.h>
|
||||
#include <language.h>
|
||||
#include <kbsequence.h>
|
||||
#include <kbmap.h>
|
||||
#include <ispell.h>
|
||||
#include <intl.h>
|
||||
#include <insetiterator.h>
|
||||
#include <importer.h>
|
||||
#include <graph.h>
|
||||
#include <gettext.h>
|
||||
#include <funcrequest.h>
|
||||
#include <format.h>
|
||||
#include <factory.h>
|
||||
#include <exporter.h>
|
||||
#include <errorlist.h>
|
||||
#include <encoding.h>
|
||||
#include <dociterator.h>
|
||||
#include <dispatchresult.h>
|
||||
#include <dimension.h>
|
||||
#include <debug.h>
|
||||
#include <cursor_slice.h>
|
||||
#include <cursor.h>
|
||||
#include <counters.h>
|
||||
#include <coordcache.h>
|
||||
#include <converter.h>
|
||||
#include <chset.h>
|
||||
#include <changes.h>
|
||||
#include <bufferview_funcs.h>
|
||||
#include <bufferparams.h>
|
||||
#include <bufferlist.h>
|
||||
#include <buffer_funcs.h>
|
||||
#include <buffer.h>
|
||||
#include <box.h>
|
||||
#include <author.h>
|
||||
#include <aspell_local.h>
|
||||
#include <WordLangTuple.h>
|
||||
#include <Variables.h>
|
||||
#include <ToolbarBackend.h>
|
||||
#include <TocBackend.h>
|
||||
#include <Thesaurus.h>
|
||||
#include <SpellBase.h>
|
||||
#include <Spacing.h>
|
||||
#include <Sectioning.h>
|
||||
#include <RowList_fwd.h>
|
||||
#include <PrinterParams.h>
|
||||
#include <ParagraphParameters.h>
|
||||
#include <ParagraphList_fwd.h>
|
||||
#include <ParagraphList.h>
|
||||
#include <MenuBackend.h>
|
||||
#include <LyXAction.h>
|
||||
#include <LaTeXFeatures.h>
|
||||
#include <LaTeX.h>
|
||||
#include <LColor.h>
|
||||
#include <InsetList.h>
|
||||
#include <FuncStatus.h>
|
||||
#include <FontIterator.h>
|
||||
#include <Floating.h>
|
||||
#include <FloatList.h>
|
||||
#include <DepTable.h>
|
||||
#include <CutAndPaste.h>
|
||||
#include <Color.h>
|
||||
#include <Chktex.h>
|
||||
#include <Bullet.h>
|
||||
#include <BufferView.h>
|
||||
#include <BranchList.h>
|
||||
#include <Bidi.h>
|
||||
#endif
|
||||
|
||||
#ifndef LYX_DONT_PRECOMPILE_SUPPORT
|
||||
#include <support/FileMonitor.h>
|
||||
#include <support/RandomAccessList.h>
|
||||
#include <support/convert.h>
|
||||
#include <support/copied_ptr.h>
|
||||
#include <support/cow_ptr.h>
|
||||
#include <support/debugstream.h>
|
||||
#include <support/docstream.h>
|
||||
#include <support/docstring.h>
|
||||
#include <support/environment.h>
|
||||
#include <support/filefilterlist.h>
|
||||
#include <support/filename.h>
|
||||
#include <support/filetools.h>
|
||||
#include <support/fontutils.h>
|
||||
#include <support/forkedcall.h>
|
||||
#include <support/forkedcallqueue.h>
|
||||
#include <support/forkedcontr.h>
|
||||
#include <support/fs_extras.h>
|
||||
#include <support/limited_stack.h>
|
||||
#include <support/lstrings.h>
|
||||
#include <support/lyxalgo.h>
|
||||
#include <support/lyxlib.h>
|
||||
#include <support/lyxmanip.h>
|
||||
#include <support/lyxtime.h>
|
||||
#include <support/os.h>
|
||||
#include <support/os_win32.h>
|
||||
#include <support/package.h>
|
||||
#include <support/path.h>
|
||||
#include <support/socktools.h>
|
||||
#include <support/std_istream.h>
|
||||
#include <support/std_ostream.h>
|
||||
#include <support/systemcall.h>
|
||||
#include <support/textutils.h>
|
||||
#include <support/translator.h>
|
||||
#include <support/types.h>
|
||||
#include <support/unicode.h>
|
||||
#include <support/userinfo.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef LYX_DONT_PRECOMPILE_INSETS
|
||||
#include <insets/ExternalSupport.h>
|
||||
#include <insets/ExternalTemplate.h>
|
||||
#include <insets/ExternalTransforms.h>
|
||||
#include <insets/inset.h>
|
||||
#include <insets/insetbase.h>
|
||||
#include <insets/insetbibitem.h>
|
||||
#include <insets/insetbibtex.h>
|
||||
#include <insets/insetbox.h>
|
||||
#include <insets/insetbranch.h>
|
||||
#include <insets/insetcaption.h>
|
||||
#include <insets/insetcharstyle.h>
|
||||
#include <insets/insetcite.h>
|
||||
#include <insets/insetcollapsable.h>
|
||||
#include <insets/insetcommand.h>
|
||||
#include <insets/insetcommandparams.h>
|
||||
#include <insets/insetenv.h>
|
||||
#include <insets/insetert.h>
|
||||
#include <insets/insetexternal.h>
|
||||
#include <insets/insetfloat.h>
|
||||
#include <insets/insetfloatlist.h>
|
||||
#include <insets/insetfoot.h>
|
||||
#include <insets/insetfootlike.h>
|
||||
#include <insets/insetgraphics.h>
|
||||
#include <insets/insetgraphicsParams.h>
|
||||
#include <insets/insethfill.h>
|
||||
#include <insets/insetinclude.h>
|
||||
#include <insets/insetindex.h>
|
||||
#include <insets/insetlabel.h>
|
||||
#include <insets/insetlatexaccent.h>
|
||||
#include <insets/insetline.h>
|
||||
#include <insets/insetmarginal.h>
|
||||
#include <insets/insetnewline.h>
|
||||
#include <insets/insetnote.h>
|
||||
#include <insets/insetoptarg.h>
|
||||
#include <insets/insetpagebreak.h>
|
||||
#include <insets/insetquotes.h>
|
||||
#include <insets/insetref.h>
|
||||
#include <insets/insetspace.h>
|
||||
#include <insets/insetspecialchar.h>
|
||||
#include <insets/insettabular.h>
|
||||
#include <insets/insettext.h>
|
||||
#include <insets/insettoc.h>
|
||||
#include <insets/inseturl.h>
|
||||
#include <insets/insetvspace.h>
|
||||
#include <insets/insetwrap.h>
|
||||
#include <insets/mailinset.h>
|
||||
#include <insets/render_base.h>
|
||||
#include <insets/render_button.h>
|
||||
#include <insets/render_graphic.h>
|
||||
#include <insets/render_preview.h>
|
||||
#endif
|
||||
|
||||
#ifndef LYX_DONT_PRECOMPILE_MATHED
|
||||
#include <mathed/InsetFormulaMacro.h>
|
||||
#include <mathed/InsetMath.h>
|
||||
#include <mathed/InsetMathAMSArray.h>
|
||||
#include <mathed/InsetMathArray.h>
|
||||
#include <mathed/InsetMathBig.h>
|
||||
#include <mathed/InsetMathBinom.h>
|
||||
#include <mathed/InsetMathBoldSymbol.h>
|
||||
#include <mathed/InsetMathBox.h>
|
||||
#include <mathed/InsetMathBoxed.h>
|
||||
#include <mathed/InsetMathBrace.h>
|
||||
#include <mathed/InsetMathCases.h>
|
||||
#include <mathed/InsetMathChar.h>
|
||||
#include <mathed/InsetMathColor.h>
|
||||
#include <mathed/InsetMathCommand.h>
|
||||
#include <mathed/InsetMathComment.h>
|
||||
#include <mathed/InsetMathDFrac.h>
|
||||
#include <mathed/InsetMathDecoration.h>
|
||||
#include <mathed/InsetMathDelim.h>
|
||||
#include <mathed/InsetMathDiff.h>
|
||||
#include <mathed/InsetMathDim.h>
|
||||
#include <mathed/InsetMathDots.h>
|
||||
#include <mathed/InsetMathEnv.h>
|
||||
#include <mathed/InsetMathExFunc.h>
|
||||
#include <mathed/InsetMathExInt.h>
|
||||
#include <mathed/InsetMathFBox.h>
|
||||
#include <mathed/InsetMathFont.h>
|
||||
#include <mathed/InsetMathFontOld.h>
|
||||
#include <mathed/InsetMathFrac.h>
|
||||
#include <mathed/InsetMathFracBase.h>
|
||||
#include <mathed/InsetMathFrameBox.h>
|
||||
#include <mathed/InsetMathGrid.h>
|
||||
#include <mathed/InsetMathHull.h>
|
||||
#include <mathed/InsetMathKern.h>
|
||||
#include <mathed/InsetMathLefteqn.h>
|
||||
#include <mathed/InsetMathLim.h>
|
||||
#include <mathed/InsetMathMBox.h>
|
||||
#include <mathed/InsetMathMacro.h>
|
||||
#include <mathed/InsetMathMakebox.h>
|
||||
#include <mathed/InsetMathMatrix.h>
|
||||
#include <mathed/InsetMathNest.h>
|
||||
#include <mathed/InsetMathNumber.h>
|
||||
#include <mathed/InsetMathOverset.h>
|
||||
#include <mathed/InsetMathPar.h>
|
||||
#include <mathed/InsetMathPhantom.h>
|
||||
#include <mathed/InsetMathRef.h>
|
||||
#include <mathed/InsetMathRoot.h>
|
||||
#include <mathed/InsetMathScript.h>
|
||||
#include <mathed/InsetMathSize.h>
|
||||
#include <mathed/InsetMathSpace.h>
|
||||
#include <mathed/InsetMathSplit.h>
|
||||
#include <mathed/InsetMathSqrt.h>
|
||||
#include <mathed/InsetMathStackrel.h>
|
||||
#include <mathed/InsetMathString.h>
|
||||
#include <mathed/InsetMathSubstack.h>
|
||||
#include <mathed/InsetMathSymbol.h>
|
||||
#include <mathed/InsetMathTFrac.h>
|
||||
#include <mathed/InsetMathTabular.h>
|
||||
#include <mathed/InsetMathUnderset.h>
|
||||
#include <mathed/InsetMathUnknown.h>
|
||||
#include <mathed/InsetMathXArrow.h>
|
||||
#include <mathed/InsetMathXYArrow.h>
|
||||
#include <mathed/InsetMathXYMatrix.h>
|
||||
#include <mathed/MathAtom.h>
|
||||
#include <mathed/MathAutoCorrect.h>
|
||||
#include <mathed/MathData.h>
|
||||
#include <mathed/MathExtern.h>
|
||||
#include <mathed/MathFactory.h>
|
||||
#include <mathed/MathGridInfo.h>
|
||||
#include <mathed/MathMacroArgument.h>
|
||||
#include <mathed/MathMacroTable.h>
|
||||
#include <mathed/MathMacroTemplate.h>
|
||||
#include <mathed/MathParser.h>
|
||||
#include <mathed/MathReplace.h>
|
||||
#include <mathed/MathStream.h>
|
||||
#include <mathed/MathSupport.h>
|
||||
#include <mathed/TextPainter.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef LYX_DONT_PRECOMPILE_FRONTENDS
|
||||
#include <frontends/Alert.h>
|
||||
#include <frontends/Alert_pimpl.h>
|
||||
#include <frontends/Application.h>
|
||||
#include <frontends/Clipboard.h>
|
||||
#include <frontends/Dialogs.h>
|
||||
#include <frontends/FileDialog.h>
|
||||
#include <frontends/FontLoader.h>
|
||||
#include <frontends/FontMetrics.h>
|
||||
#include <frontends/Gui.h>
|
||||
#include <frontends/LyXKeySym.h>
|
||||
#include <frontends/LyXKeySymFactory.h>
|
||||
#include <frontends/LyXView.h>
|
||||
#include <frontends/Menubar.h>
|
||||
#include <frontends/NoGuiFontLoader.h>
|
||||
#include <frontends/NoGuiFontMetrics.h>
|
||||
#include <frontends/Painter.h>
|
||||
#include <frontends/Selection.h>
|
||||
#include <frontends/Timeout.h>
|
||||
#include <frontends/Toolbars.h>
|
||||
#include <frontends/WorkArea.h>
|
||||
#include <frontends/guiapi.h>
|
||||
#include <frontends/key_state.h>
|
||||
#include <frontends/mouse_state.h>
|
||||
#include <frontends/nullpainter.h>
|
||||
#endif
|
||||
|
||||
#ifndef LYX_DONT_PRECOMPILE_CONTROLLERS
|
||||
#include <frontends/controllers/BCView.h>
|
||||
#include <frontends/controllers/ButtonController.h>
|
||||
#include <frontends/controllers/ButtonPolicies.h>
|
||||
#include <frontends/controllers/ControlAboutlyx.h>
|
||||
#include <frontends/controllers/ControlBibtex.h>
|
||||
#include <frontends/controllers/ControlBox.h>
|
||||
#include <frontends/controllers/ControlBranch.h>
|
||||
#include <frontends/controllers/ControlChanges.h>
|
||||
//#include <frontends/controllers/ControlCharacter.h>
|
||||
#include <frontends/controllers/ControlCitation.h>
|
||||
#include <frontends/controllers/ControlCommand.h>
|
||||
#include <frontends/controllers/ControlCommandBuffer.h>
|
||||
#include <frontends/controllers/ControlDocument.h>
|
||||
#include <frontends/controllers/ControlERT.h>
|
||||
#include <frontends/controllers/ControlErrorList.h>
|
||||
#include <frontends/controllers/ControlExternal.h>
|
||||
#include <frontends/controllers/ControlFloat.h>
|
||||
#include <frontends/controllers/ControlGraphics.h>
|
||||
#include <frontends/controllers/ControlInclude.h>
|
||||
#include <frontends/controllers/ControlLog.h>
|
||||
#include <frontends/controllers/ControlMath.h>
|
||||
#include <frontends/controllers/ControlNote.h>
|
||||
#include <frontends/controllers/ControlParagraph.h>
|
||||
#include <frontends/controllers/ControlPrefs.h>
|
||||
#include <frontends/controllers/ControlPrint.h>
|
||||
#include <frontends/controllers/ControlRef.h>
|
||||
#include <frontends/controllers/ControlSearch.h>
|
||||
#include <frontends/controllers/ControlSendto.h>
|
||||
#include <frontends/controllers/ControlShowFile.h>
|
||||
#include <frontends/controllers/ControlSpellchecker.h>
|
||||
#include <frontends/controllers/ControlTabular.h>
|
||||
#include <frontends/controllers/ControlTabularCreate.h>
|
||||
#include <frontends/controllers/ControlTexinfo.h>
|
||||
#include <frontends/controllers/ControlThesaurus.h>
|
||||
#include <frontends/controllers/ControlToc.h>
|
||||
#include <frontends/controllers/ControlVSpace.h>
|
||||
#include <frontends/controllers/ControlViewSource.h>
|
||||
#include <frontends/controllers/ControlWrap.h>
|
||||
#include <frontends/controllers/Dialog.h>
|
||||
#include <frontends/controllers/Kernel.h>
|
||||
#include <frontends/controllers/biblio.h>
|
||||
//#include <frontends/controllers/character.h>
|
||||
#include <frontends/controllers/frnt_lang.h>
|
||||
#include <frontends/controllers/helper_funcs.h>
|
||||
#include <frontends/controllers/pch.h>
|
||||
#include <frontends/controllers/tex_helpers.h>
|
||||
#endif
|
||||
|
||||
|
@ -167,5 +167,8 @@
|
||||
#pragma warning( disable : 4800 ) //: forcing value to bool 'true' or 'false' (performance warning)
|
||||
#endif
|
||||
|
||||
#ifdef LYX_PRECOMPILED_HEADERS
|
||||
#include "pcheaders.h"
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
187
development/cmake/pcheaders.h
Normal file
187
development/cmake/pcheaders.h
Normal file
@ -0,0 +1,187 @@
|
||||
/*
|
||||
* \file pcheader.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
* This is the compilation configuration file for LyX.
|
||||
* It was generated by autoconfs configure.
|
||||
* You might want to change some of the defaults if something goes wrong
|
||||
* during the compilation.
|
||||
*/
|
||||
|
||||
|
||||
//#define LYX_DONT_PRECOMPILE_SRC
|
||||
|
||||
#include <boost/any.hpp>
|
||||
#include <boost/array.hpp>
|
||||
#include <boost/assert.hpp>
|
||||
#include <boost/crc.hpp>
|
||||
#include <boost/cregex.hpp>
|
||||
#include <boost/current_function.hpp>
|
||||
#include <boost/function.hpp>
|
||||
#include <boost/iterator/indirect_iterator.hpp>
|
||||
#include <boost/optional.hpp>
|
||||
#include <boost/regex.hpp>
|
||||
#include <boost/scoped_array.hpp>
|
||||
#include <boost/scoped_ptr.hpp>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <boost/signals/connection.hpp>
|
||||
#include <boost/signal.hpp>
|
||||
#include <boost/signals/trackable.hpp>
|
||||
#include <boost/version.hpp>
|
||||
|
||||
#if BOOST_VERSION < 103300
|
||||
# include <boost/test/detail/nullstream.hpp>
|
||||
#else
|
||||
# include <boost/test/utils/nullstream.hpp>
|
||||
#endif
|
||||
|
||||
#include <boost/tokenizer.hpp>
|
||||
#include <boost/tuple/tuple.hpp>
|
||||
#include <boost/utility.hpp>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cerrno>
|
||||
#include <clocale>
|
||||
#include <csignal>
|
||||
#include <cstddef>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <deque>
|
||||
#include <exception>
|
||||
#include <fstream>
|
||||
#include <functional>
|
||||
#include <iomanip>
|
||||
#include <ios>
|
||||
#include <iosfwd>
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
#include <list>
|
||||
#include <map>
|
||||
#include <queue>
|
||||
#include <set>
|
||||
#include <sstream>
|
||||
#include <stack>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#ifndef LYX_DONT_PRECOMPILE_SRC
|
||||
#include <vspace.h>
|
||||
#include <version.h>
|
||||
#include <vc-backend.h>
|
||||
#include <undo.h>
|
||||
#include <trans_mgr.h>
|
||||
#include <trans_decl.h>
|
||||
#include <trans.h>
|
||||
#include <toc.h>
|
||||
#include <texrow.h>
|
||||
#include <tex-strings.h>
|
||||
#include <tex-accent.h>
|
||||
#include <tabular.h>
|
||||
#include <sgml.h>
|
||||
#include <session.h>
|
||||
#include <rowpainter.h>
|
||||
#include <pspell.h>
|
||||
#include <pariterator.h>
|
||||
#include <paragraph_pimpl.h>
|
||||
#include <paragraph_funcs.h>
|
||||
#include <paragraph.h>
|
||||
#include <paper.h>
|
||||
#include <outputparams.h>
|
||||
#include <output_plaintext.h>
|
||||
#include <output_latex.h>
|
||||
#include <output_docbook.h>
|
||||
#include <output.h>
|
||||
#include <mover.h>
|
||||
#include <metricsinfo.h>
|
||||
#include <messages.h>
|
||||
#include <lyxvc.h>
|
||||
#include <lyxtextclasslist.h>
|
||||
#include <lyxtextclass.h>
|
||||
#include <lyxtext.h>
|
||||
#include <lyxsocket.h>
|
||||
#include <lyxserver.h>
|
||||
#include <lyxrow.h>
|
||||
#include <lyxrc.h>
|
||||
#include <lyxlex_pimpl.h>
|
||||
#include <lyxlex.h>
|
||||
#include <lyxlength.h>
|
||||
#include <lyxlayout_ptr_fwd.h>
|
||||
#include <lyxlayout.h>
|
||||
#include <lyxgluelength.h>
|
||||
#include <lyxfunc.h>
|
||||
#include <lyxfont.h>
|
||||
#include <lyxfind.h>
|
||||
#include <lyx_sty.h>
|
||||
#include <lyx_main.h>
|
||||
#include <lyx_cb.h>
|
||||
#include <lfuns.h>
|
||||
#include <lengthcommon.h>
|
||||
#include <layout.h>
|
||||
#include <language.h>
|
||||
#include <kbsequence.h>
|
||||
#include <kbmap.h>
|
||||
#include <ispell.h>
|
||||
#include <intl.h>
|
||||
#include <insetiterator.h>
|
||||
#include <importer.h>
|
||||
#include <graph.h>
|
||||
#include <gettext.h>
|
||||
#include <funcrequest.h>
|
||||
#include <format.h>
|
||||
#include <factory.h>
|
||||
#include <exporter.h>
|
||||
#include <errorlist.h>
|
||||
#include <encoding.h>
|
||||
#include <dociterator.h>
|
||||
#include <dispatchresult.h>
|
||||
#include <dimension.h>
|
||||
#include <debug.h>
|
||||
#include <cursor_slice.h>
|
||||
#include <cursor.h>
|
||||
#include <counters.h>
|
||||
#include <coordcache.h>
|
||||
#include <converter.h>
|
||||
#include <chset.h>
|
||||
#include <changes.h>
|
||||
#include <bufferview_funcs.h>
|
||||
#include <bufferparams.h>
|
||||
#include <bufferlist.h>
|
||||
#include <buffer_funcs.h>
|
||||
#include <buffer.h>
|
||||
#include <box.h>
|
||||
#include <author.h>
|
||||
#include <aspell_local.h>
|
||||
#include <WordLangTuple.h>
|
||||
#include <Variables.h>
|
||||
#include <ToolbarBackend.h>
|
||||
#include <TocBackend.h>
|
||||
#include <Thesaurus.h>
|
||||
#include <SpellBase.h>
|
||||
#include <Spacing.h>
|
||||
#include <Sectioning.h>
|
||||
#include <RowList_fwd.h>
|
||||
#include <PrinterParams.h>
|
||||
#include <ParagraphParameters.h>
|
||||
#include <ParagraphList_fwd.h>
|
||||
#include <ParagraphList.h>
|
||||
#include <MenuBackend.h>
|
||||
#include <LyXAction.h>
|
||||
#include <LaTeXFeatures.h>
|
||||
#include <LaTeX.h>
|
||||
#include <LColor.h>
|
||||
#include <InsetList.h>
|
||||
#include <FuncStatus.h>
|
||||
#include <FontIterator.h>
|
||||
#include <Floating.h>
|
||||
#include <FloatList.h>
|
||||
#include <DepTable.h>
|
||||
#include <CutAndPaste.h>
|
||||
#include <Color.h>
|
||||
#include <Chktex.h>
|
||||
#include <Bullet.h>
|
||||
#include <BufferView.h>
|
||||
#include <BranchList.h>
|
||||
#include <Bidi.h>
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user