source: general/prog/cmake.xml@ fb7ec07

elogind
Last change on this file since fb7ec07 was fb7ec07, checked in by DJ Lucas <dj@…>, 5 years ago

Merge to HEAD 21661.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/BOOK-elogind@21662 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 8.4 KB
RevLine 
[57f7cfa]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[8dfc5c3]7 <!ENTITY cmake-download-http "https://cmake.org/files/v&cmake-major-version;/cmake-&cmake-version;.tar.gz">
[57f7cfa]8 <!ENTITY cmake-download-ftp " ">
[fb7ec07]9 <!ENTITY cmake-md5sum "a8cbfc3510b95ea686b4059d8b1f765c">
[e7d893b]10 <!ENTITY cmake-size "8.4 MB">
11 <!ENTITY cmake-buildsize "371 MB (add 533 MB for tests)">
12 <!ENTITY cmake-time "2.6 SBU (add 4.6 SBU for tests, both using parallelism=4)">
[57f7cfa]13]>
14
[b7b6efc]15<sect1 id="cmake" xreflabel="CMake-&cmake-version;">
[57f7cfa]16 <?dbhtml filename="cmake.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>CMake-&cmake-version;</title>
24
25 <indexterm zone="cmake">
26 <primary sortas="a-CMake">CMake</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to CMake</title>
31
[b7b6efc]32 <para>
[0d7900a]33 The <application>CMake</application> package contains a modern
34 toolset used for generating Makefiles. It is a successor of the
[b7b6efc]35 auto-generated <command>configure</command> script and aims to
[0d7900a]36 be platform- and compiler-independent. A significant user of
[b7b6efc]37 <application>CMake</application> is <application>KDE</application>
38 since version 4.
39 </para>
[57f7cfa]40
[4b1b99e8]41 &lfs84_checked;
[57f7cfa]42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
[b7b6efc]46 <para>
47 Download (HTTP): <ulink url="&cmake-download-http;"/>
48 </para>
[57f7cfa]49 </listitem>
50 <listitem>
[b7b6efc]51 <para>
52 Download (FTP): <ulink url="&cmake-download-ftp;"/>
53 </para>
[57f7cfa]54 </listitem>
55 <listitem>
[b7b6efc]56 <para>
57 Download MD5 sum: &cmake-md5sum;
58 </para>
[57f7cfa]59 </listitem>
60 <listitem>
[b7b6efc]61 <para>
62 Download size: &cmake-size;
63 </para>
[57f7cfa]64 </listitem>
65 <listitem>
[b7b6efc]66 <para>
67 Estimated disk space required: &cmake-buildsize;
68 </para>
[57f7cfa]69 </listitem>
70 <listitem>
[b7b6efc]71 <para>
72 Estimated build time: &cmake-time;
73 </para>
[57f7cfa]74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">CMake Dependencies</bridgehead>
78
[6eb166fa]79 <bridgehead renderas="sect4">Required</bridgehead>
80 <para role="required">
81 <xref linkend="libuv"/>
82 </para>
83
[e1b2c0e]84 <bridgehead renderas="sect4">Recommended</bridgehead>
85 <para role="recommended">
[56605b9]86 <xref linkend="curl"/> and
[428191d]87 <xref linkend="libarchive"/>
[b88be39]88 </para>
89
[2bcddd4]90 <bridgehead renderas="sect4">Optional</bridgehead>
[b88be39]91 <para role="optional">
[67b1a0a]92 <xref linkend="qt5"/> (for the Qt-based GUI),
[6eb166fa]93 <xref linkend="subversion"/> (for testing), and
[8dfc5c3]94 <ulink url="https://pypi.python.org/pypi/Sphinx">Sphinx</ulink>
[31b8fd26]95 (for building documents)
[57f7cfa]96 </para>
97
98 <para condition="html" role="usernotes">User Notes:
[b7b6efc]99 <ulink url="&blfs-wiki;/cmake"/>
100 </para>
[57f7cfa]101 </sect2>
102
103 <sect2 role="installation">
104 <title>Installation of CMake</title>
[20c731a]105
[b7b6efc]106 <para>
107 Install <application>CMake</application> by running the following
108 commands:
109 </para>
[57f7cfa]110
[6eb166fa]111<screen><userinput>sed -i '/"lib64"/s/64//' Modules/GNUInstallDirs.cmake &amp;&amp;
[f1ab71d]112
[20c731a]113./bootstrap --prefix=/usr \
114 --system-libs \
115 --mandir=/share/man \
116 --no-system-jsoncpp \
117 --no-system-librhash \
[f3efa2c]118 --docdir=/share/doc/cmake-&cmake-version; &amp;&amp;
[57f7cfa]119make</userinput></screen>
120
[b7b6efc]121 <para>
[7ed0e9d]122 To test the results, issue: <command>bin/ctest
123 -j<replaceable>&lt;N&gt;</replaceable> -O
124 cmake-&cmake-version;-test.log</command>, where
[f3efa2c]125 <replaceable>&lt;N&gt;</replaceable> is an integer between 1 and the
[fb7ec07]126 number of system cores. In case the environment variable
127 <literal>LANG</literal> is set to a non-blank value and failures
128 occur, try running the tests without having <literal>LANG</literal> set.
[2cd6717]129
[7ed0e9d]130 <!-- Please, don't remove this comment, needed if tests start to fail
[248a536]131 again. If you want to investigate a problem with a given "problem1-test",
132 use <command>bin/ctest -R "problem1-test"</command> and, to omit it, use
[369d7767]133 <command>bin/ctest -E "problem1-test"</command>. These options can be
[248a536]134 used together: <command>bin/ctest -R "problem1-test" -E
135 "problem2-test"</command>. Option -N can be used to display all
136 available tests, and you can run <command>bin/ctest</command> for a
137 sub-set of tests by using separated by spaces names or numbers as
138 options. Option -/-help can be used to show all options.-->
[b7b6efc]139 </para>
[b88be39]140
[b7b6efc]141 <para>
142 Now, as the <systemitem class="username">root</systemitem> user:
143 </para>
[57f7cfa]144
145<screen role="root"><userinput>make install</userinput></screen>
146
147 </sect2>
148
149 <sect2 role="commands">
150 <title>Command Explanations</title>
151
[87ff6f30]152 <para>
[0901194]153 <command>sed ... Modules/GNUInstallDirs.cmake</command>:
[87ff6f30]154 This command disables applications using cmake from attempting to
[0901194]155 install files in /usr/lib64/.
[87ff6f30]156 </para>
157
[b7b6efc]158 <para>
[407637c]159 <parameter>--system-libs</parameter>: This switch forces the build system
160 to link against <application>Zlib</application>,
161 <application>Bzip2</application>, <application>cURL</application>,
162 <application>Expat</application> and <application>libarchive</application>
163 installed on the system.
[b7b6efc]164 </para>
[0d7900a]165
[2c38e951]166 <para>
167 <parameter>--no-system-jsoncpp</parameter>: This switch removes the
168 <application>JSON-C++</application> library from the list of system
169 libraries. A bundled version of that library is used instead.
170 </para>
171
[b7b6efc]172 <para>
173 <option>--qt-gui</option>: This switch enables building of the
174 <application>Qt</application>-based GUI for
175 <application>CMake</application>.
176 </para>
[57f7cfa]177
178 </sect2>
179
180 <sect2 role="content">
181 <title>Contents</title>
182
183 <segmentedlist>
[fd27868]184 <segtitle>Installed Programs</segtitle>
[c3c56b2]185 <segtitle>Installed Libraries</segtitle>
[fd27868]186 <segtitle>Installed Directories</segtitle>
[57f7cfa]187
188 <seglistitem>
[b7b6efc]189 <seg>
[6c6f393]190 ccmake, cmake, cmake-gui (optional), cpack, and ctest
[b7b6efc]191 </seg>
[c3c56b2]192 <seg>
193 None
194 </seg>
[b7b6efc]195 <seg>
196 /usr/share/cmake-&cmake-major-version; and
197 /usr/share/doc/cmake-&cmake-version;
198 </seg>
[57f7cfa]199 </seglistitem>
200 </segmentedlist>
201
[0d7900a]202
[57f7cfa]203 <variablelist>
204 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
205 <?dbfo list-presentation="list"?>
206 <?dbhtml list-presentation="table"?>
207
208 <varlistentry id="ccmake">
209 <term><command>ccmake</command></term>
210 <listitem>
[b7b6efc]211 <para>
212 is a curses based interactive frontend to
213 <command>cmake</command>.
214 </para>
[57f7cfa]215 <indexterm zone="cmake ccmake">
216 <primary sortas="b-ccmake">ccmake</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220
[b7b6efc]221 <varlistentry id="cmake-prog">
[57f7cfa]222 <term><command>cmake</command></term>
223 <listitem>
[b7b6efc]224 <para>
225 is the makefile generator.
226 </para>
227 <indexterm zone="cmake cmake-prog">
[57f7cfa]228 <primary sortas="b-cmake">cmake</primary>
229 </indexterm>
230 </listitem>
231 </varlistentry>
[0d7900a]232
[2bcddd4]233 <varlistentry id="cmake-gui">
234 <term><command>cmake-gui</command></term>
235 <listitem>
[b7b6efc]236 <para>
[8ed30d52]237 (optional) is the <application>Qt</application>-based frontent to
[b7b6efc]238 <command>cmake</command>.
239 </para>
[2bcddd4]240 <indexterm zone="cmake cmake-gui">
241 <primary sortas="b-cmake-gui">cmake-gui</primary>
242 </indexterm>
243 </listitem>
244 </varlistentry>
245
246 <varlistentry id="cpack">
247 <term><command>cpack</command></term>
248 <listitem>
[b7b6efc]249 <para>
250 is the <application>CMake</application> packaging program.
251 </para>
[2bcddd4]252 <indexterm zone="cmake cpack">
253 <primary sortas="b-cpack">cpack</primary>
254 </indexterm>
255 </listitem>
[0d7900a]256 </varlistentry>
257
[2bcddd4]258 <varlistentry id="ctest">
259 <term><command>ctest</command></term>
260 <listitem>
[b7b6efc]261 <para>
262 is a testing utility for cmake-generated build trees.
263 </para>
[2bcddd4]264 <indexterm zone="cmake ctest">
265 <primary sortas="b-ctest">ctest</primary>
266 </indexterm>
267 </listitem>
268 </varlistentry>
[57f7cfa]269
270 </variablelist>
271
272 </sect2>
273
274</sect1>
Note: See TracBrowser for help on using the repository browser.