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-8.1 platform.
Download (HTTP): https://cmake.org/files/v3.9/cmake-3.9.1.tar.gz
Download MD5 sum: 00f43c6a56d4903436317c14f9ca7f37
Download size: 7.4 MB
Estimated disk space required: 335 MB (add 375 MB for tests)
Estimated build time: 2.2 SBU (add 2.8 SBU for tests, both using parallelism=4)
cURL-7.55.1 and libarchive-3.3.2
Qt-5.9.1 (for the Qt-based GUI), Subversion-1.9.7 (for testing), libuv, and Sphinx (for building documents)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/cmake
Install CMake by running the following commands:
sed -i '/CMAKE_USE_LIBUV 1/s/1/0/' CMakeLists.txt && sed -i '/"lib64"/s/64//' Modules/GNUInstallDirs.cmake && ./bootstrap --prefix=/usr \ --system-libs \ --mandir=/share/man \ --no-system-jsoncpp \ --no-system-librhash \ --docdir=/share/doc/cmake-3.9.1 && make
To test the results, issue: bin/ctest
-j<N>
-O
cmake-3.9.1-test.log, where <N>
is an integer between 1
and the number of system cores.
Now, as the root
user:
make install
sed ... CMakeLists.txt: This command disables the attempt to use the external libuv library.
sed ... Modules/GNUInstallDirs.cmake: This command disables applications using cmake from attempting to install files in /usr/lib64/.
--system-libs
: This switch
forces the build system to link against Zlib, Bzip2,
cURL, Expat and libarchive installed on the system.
--no-system-jsoncpp
: This
switch removes the JSON-C++
library from the list of system libraries. A bundled version of
that library is used instead.
--qt-gui
: This switch enables building
of the Qt-based GUI for
CMake.
Last updated on 2017-08-18 12:42:43 -0700