source: general/prog/cmake-systemd.xml@ 184f8af

systemd-13485
Last change on this file since 184f8af was 184f8af, checked in by Douglas R. Reno <renodr@…>, 9 years ago

Update to GDB-7.10
Update to valgrind-3.11.0
Update to LLVM-3.7.0
Update to cmake-3.3.2
Update to OpenSSH-7.1p1
Update to libtasn1-4.7

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

  • Property mode set to 100644
File size: 7.3 KB
Line 
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
7 <!ENTITY cmake-download-http "http://www.cmake.org/files/v&cmake-major-version;/cmake-&cmake-version;.tar.gz">
8 <!ENTITY cmake-download-ftp " ">
9 <!ENTITY cmake-md5sum "5febbd11bcaac854a27eebaf4a124be2">
10 <!ENTITY cmake-size "6.3 MB">
11 <!ENTITY cmake-buildsize "596 MB (with tests)">
12 <!ENTITY cmake-time "10.3 SBU (with tests)">
13]>
14
15<sect1 id="cmake" xreflabel="CMake-&cmake-version;">
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
32 <para>
33 The <application>CMake</application> package contains a modern
34 toolset used for generating Makefiles. It is a successor of the
35 auto-generated <command>configure</command> script and aims to
36 be platform- and compiler-independent. A significant user of
37 <application>CMake</application> is <application>KDE</application>
38 since version 4.
39 </para>
40
41 &lfs77_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&cmake-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&cmake-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &cmake-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &cmake-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &cmake-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &cmake-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">CMake Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Recommended</bridgehead>
80 <para role="recommended">
81 <xref linkend="curl"/> and
82 <xref linkend="libarchive"/>
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 <xref linkend="qt4"/> or <xref linkend="qt5"/> (for the Qt-based GUI),
88 <xref linkend="subversion"/> (for testing), and
89 <ulink url="http://pypi.python.org/pypi/Sphinx">Sphinx</ulink>
90 (for building documents)
91 </para>
92
93 <para condition="html" role="usernotes">User Notes:
94 <ulink url="&blfs-wiki;/cmake"/>
95 </para>
96 </sect2>
97
98 <sect2 role="installation">
99 <title>Installation of CMake</title>
100
101 <para>
102 Install <application>CMake</application> by running the following
103 commands:
104 </para>
105
106<screen><userinput>./bootstrap --prefix=/usr \
107 --system-libs \
108 --mandir=/share/man \
109 --no-system-jsoncpp \
110 --docdir=/share/doc/cmake-&cmake-version; &amp;&amp;
111make</userinput></screen>
112
113 <para>
114 To test the results, issue: <command>bin/ctest</command>.
115 </para>
116
117 <para>
118 Now, as the <systemitem class="username">root</systemitem> user:
119 </para>
120
121<screen role="root"><userinput>make install</userinput></screen>
122
123 </sect2>
124
125 <sect2 role="commands">
126 <title>Command Explanations</title>
127
128 <para>
129 <parameter>--system-libs</parameter>: This switch forces the build system
130 to link against the <application>Zlib</application>,
131 <application>Bzip2</application>, <application>cURL</application>,
132 <application>Expat</application> and <application>libarchive</application>
133 packages already installed on the system.
134 </para>
135
136 <para>
137 <parameter>--no-system-jsoncpp</parameter>: This switch removes the
138 <application>JSON-C++</application> library from the list of system
139 libraries. A bundled version of that library is used instead.
140 </para>
141
142 <para>
143 <option>--qt-gui</option>: This switch enables building of the
144 <application>Qt</application>-based GUI for
145 <application>CMake</application>.
146 </para>
147
148 <para>
149 <option>--qt-qmake=/usr/bin/qmake-qt5</option>: Use this switch if
150 you have both <application>Qt4</application> and
151 <application>Qt5</application> installed but wish to build the
152 <application>Qt5</application> based GUI (it defaults to
153 <application>Qt4</application> one).
154 </para>
155
156 </sect2>
157
158 <sect2 role="content">
159 <title>Contents</title>
160
161 <segmentedlist>
162 <segtitle>Installed Programs</segtitle>
163 <segtitle>Installed Libraries</segtitle>
164 <segtitle>Installed Directories</segtitle>
165
166 <seglistitem>
167 <seg>
168 ccmake, cmake, cmake-gui (optional), cpack and ctest
169 </seg>
170 <seg>
171 None
172 </seg>
173 <seg>
174 /usr/share/cmake-&cmake-major-version; and
175 /usr/share/doc/cmake-&cmake-version;
176 </seg>
177 </seglistitem>
178 </segmentedlist>
179
180
181 <variablelist>
182 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
183 <?dbfo list-presentation="list"?>
184 <?dbhtml list-presentation="table"?>
185
186 <varlistentry id="ccmake">
187 <term><command>ccmake</command></term>
188 <listitem>
189 <para>
190 is a curses based interactive frontend to
191 <command>cmake</command>.
192 </para>
193 <indexterm zone="cmake ccmake">
194 <primary sortas="b-ccmake">ccmake</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198
199 <varlistentry id="cmake-prog">
200 <term><command>cmake</command></term>
201 <listitem>
202 <para>
203 is the makefile generator.
204 </para>
205 <indexterm zone="cmake cmake-prog">
206 <primary sortas="b-cmake">cmake</primary>
207 </indexterm>
208 </listitem>
209 </varlistentry>
210
211 <varlistentry id="cmake-gui">
212 <term><command>cmake-gui</command></term>
213 <listitem>
214 <para>
215 (optional) is the <application>Qt</application>-based frontent to
216 <command>cmake</command>.
217 </para>
218 <indexterm zone="cmake cmake-gui">
219 <primary sortas="b-cmake-gui">cmake-gui</primary>
220 </indexterm>
221 </listitem>
222 </varlistentry>
223
224 <varlistentry id="cpack">
225 <term><command>cpack</command></term>
226 <listitem>
227 <para>
228 is the <application>CMake</application> packaging program.
229 </para>
230 <indexterm zone="cmake cpack">
231 <primary sortas="b-cpack">cpack</primary>
232 </indexterm>
233 </listitem>
234 </varlistentry>
235
236 <varlistentry id="ctest">
237 <term><command>ctest</command></term>
238 <listitem>
239 <para>
240 is a testing utility for cmake-generated build trees.
241 </para>
242 <indexterm zone="cmake ctest">
243 <primary sortas="b-ctest">ctest</primary>
244 </indexterm>
245 </listitem>
246 </varlistentry>
247
248 </variablelist>
249
250 </sect2>
251
252</sect1>
Note: See TracBrowser for help on using the repository browser.