]> git.lyx.org Git - features.git/commit
Initial cmake support.
authorPeter Kümmel <syntheticpp@gmx.net>
Sun, 11 Jun 2006 11:57:25 +0000 (11:57 +0000)
committerPeter Kümmel <syntheticpp@gmx.net>
Sun, 11 Jun 2006 11:57:25 +0000 (11:57 +0000)
commit7c00f14cc1297317273c28f481e304690c616848
tree88a800181480771945166c95c8056d2d18cc9431
parent9d229c3f242ed1e54b7f44d0755bd3e13fd6031f
Initial cmake support.

trunk/development/cmake/README.cmake:

Building LyX with CMake

CMake 2.4.2 or CVS version from www.cmake.org

Building Visual C++ 2005 project files:

- install Visual C++ 2005
- install Platform SDK 2005, "Core" and "Web Workshop"
- add include and library paths of the SDK to the IDE search paths,
  menu: Tools->Options->VC++ directories->Library files + Include files
- install zlib (www.zlib.net) into %ProgramFiles%/GnuWin32/include+lib
  or %ProgramFiles%/zlib/include+lib
- create a build directory, e.g. .../trunk/../build
- call in the build directory cmake ..\trunk\development\cmake
- start lyx.sln

To generate other build files call "cmake"
which shows a list of possibilities.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14071 a592a061-630c-0410-9148-cb99ea01b6c8
33 files changed:
development/cmake/CMakeLists.txt [new file with mode: 0755]
development/cmake/ConfigureChecks.cmake [new file with mode: 0755]
development/cmake/README.cmake [new file with mode: 0755]
development/cmake/boost/CMakeLists.txt [new file with mode: 0755]
development/cmake/boost/libs/CMakeLists.txt [new file with mode: 0755]
development/cmake/boost/libs/filesystem/CMakeLists.txt [new file with mode: 0755]
development/cmake/boost/libs/iostreams/CMakeLists.txt [new file with mode: 0755]
development/cmake/boost/libs/regex/CMakeLists.txt [new file with mode: 0755]
development/cmake/boost/libs/signals/CMakeLists.txt [new file with mode: 0755]
development/cmake/config.h.cmake [new file with mode: 0755]
development/cmake/intl/CMakeLists.txt [new file with mode: 0755]
development/cmake/intl/libgnuintl.h [new file with mode: 0755]
development/cmake/modules/FindASPELL.cmake [new file with mode: 0755]
development/cmake/modules/FindGNUWIN32.cmake [new file with mode: 0755]
development/cmake/modules/FindICONV.cmake [new file with mode: 0755]
development/cmake/modules/FindQt4.cmake [new file with mode: 0755]
development/cmake/modules/FindZLIB.cmake [new file with mode: 0755]
development/cmake/modules/LyXMacros.cmake [new file with mode: 0755]
development/cmake/modules/LyXPaths.cmake [new file with mode: 0755]
development/cmake/modules/LyXuic.cmake [new file with mode: 0755]
development/cmake/modules/MacroAddFileDependencies.cmake [new file with mode: 0755]
development/cmake/src/CMakeLists.txt [new file with mode: 0755]
development/cmake/src/dummy.cpp [new file with mode: 0755]
development/cmake/src/frontends/CMakeLists.txt [new file with mode: 0755]
development/cmake/src/frontends/controllers/CMakeLists.txt [new file with mode: 0755]
development/cmake/src/frontends/qt4/CMakeLists.txt [new file with mode: 0755]
development/cmake/src/graphics/CMakeLists.txt [new file with mode: 0755]
development/cmake/src/insets/CMakeLists.txt [new file with mode: 0755]
development/cmake/src/mathed/CMakeLists.txt [new file with mode: 0755]
development/cmake/src/support/CMakeLists.txt [new file with mode: 0755]
development/cmake/src/support/package.C.cmake [new file with mode: 0755]
development/cmake/src/tex2lyx/CMakeLists.txt [new file with mode: 0755]
development/cmake/src/version.C.cmake [new file with mode: 0755]