The CMake package contains a modern toolset used for generating Makefiles. It is a successor of the auto-generated configure script and aims to be platform- and compiler-independent. A significant user of CMake is KDE since version 4.
This package is known to build and work properly using an LFS-7.7 platform.
Download (HTTP): http://www.cmake.org/files/v3.1/cmake-3.1.3.tar.gz
Download MD5 sum: 5697a77503bb5636f4b4057dcc02aa32
Download size: 5.7 MB
Estimated disk space required: 259 MB (additional 245 MB for tests)
Estimated build time: 1.9 SBU (additional 1.9 SBU for tests, with paralelism=4)
cURL-7.40.0 and libarchive-3.1.2
Qt-4.8.6 or Qt-5.4.0 (for the Qt-based GUI), Subversion-1.8.11 (for testing), and Sphinx (for building documents)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/cmake
If Qt4 and Qt5 are installed in /opt
, use source
setqt4 or source
setqt5 to choose which one will be used to build
the Qt-based GUI.
Install CMake by running the following commands:
./bootstrap --prefix=/usr \ --system-libs \ --mandir=/share/man \ --docdir=/share/doc/cmake-3.1.3 && make
To test the results, issue: bin/ctest
-j<N>
-O
../cmake-3.1.3-test.log, where <N>
is an integer between 1
and the number of threads of your processor, inclusive.
Now, as the root
user:
make install
--system-libs
: This switch
forces the build system to link against Zlib, Bzip2,
cURL, Expat and libarchive installed on the system.
--qt-gui
: This switch enables building
of the Qt-based GUI for
CMake.
Last updated on 2015-02-22 21:16:54 -0800