source: general/prog/cmake.xml@ f80a458

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since f80a458 was f80a458, checked in by Bruce Dubbs <bdubbs@…>, 11 years ago

Update to cmake-2.8.10

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

  • Property mode set to 100644
File size: 6.0 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 "d4aef1eab859df61d2664721a72732c0">
10 <!ENTITY cmake-size "5.5 MB">
11 <!ENTITY cmake-buildsize "311 MB (including tests)">
12 <!ENTITY cmake-time "1.9 SBU (additional 3.1 SBU for the test suite)">
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>The <application>CMake</application> package contains a modern
33 toolset used for generating Makefiles. It is a successor of the
34 auto-generated <command>configure</command> script and aims to be platform-
35 and compiler-independent. A significant user of
36 <application>CMake</application> is <application>KDE</application> since
37 version 4.</para>
38
39 &lfs72_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>Download (HTTP): <ulink url="&cmake-download-http;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download (FTP): <ulink url="&cmake-download-ftp;"/></para>
48 </listitem>
49 <listitem>
50 <para>Download MD5 sum: &cmake-md5sum;</para>
51 </listitem>
52 <listitem>
53 <para>Download size: &cmake-size;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated disk space required: &cmake-buildsize;</para>
57 </listitem>
58 <listitem>
59 <para>Estimated build time: &cmake-time;</para>
60 </listitem>
61 </itemizedlist>
62
63 <bridgehead renderas="sect3">CMake Dependencies</bridgehead>
64
65 <bridgehead renderas="sect4">Required</bridgehead>
66 <para role="required">
67 <xref linkend="curl"/>,
68 <xref linkend="libarchive"/> and
69 <xref linkend="expat"/>
70 </para>
71
72 <bridgehead renderas="sect4">Optional</bridgehead>
73 <para role="optional">
74 <xref linkend="subversion"/> (for testing) and
75 <xref linkend="qt"/> (for the Qt-based GUI)
76 </para>
77
78 <para condition="html" role="usernotes">User Notes:
79 <ulink url="&blfs-wiki;/cmake"/></para>
80
81 </sect2>
82
83 <sect2 role="installation">
84 <title>Installation of CMake</title>
85
86 <para>Install <application>CMake</application> by running the following
87 commands:</para>
88
89<screen><userinput>./bootstrap --prefix=/usr \
90 --system-libs \
91 --mandir=/share/man \
92 --docdir=/share/doc/cmake-&cmake-version; &amp;&amp;
93make</userinput></screen>
94
95 <para>To test the results, issue: <userinput>make test</userinput>.</para>
96
97 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
98
99<screen role="root"><userinput>make install</userinput></screen>
100
101 </sect2>
102
103 <sect2 role="commands">
104 <title>Command Explanations</title>
105
106 <para><option>--system-libs</option>: This option forces the build system
107 to link against <application>Zlib</application>, <application>Bzip2</application>,
108 <application>cURL</application> and <application>Expat</application> installed
109 on the system.</para>
110
111 <para><option>--qt-gui</option>: This option builds a <application>Qt</application>-based
112 GUI for <application>CMake</application>.</para>
113
114 </sect2>
115
116 <sect2 role="content">
117 <title>Contents</title>
118
119 <segmentedlist>
120 <segtitle>Installed Programs</segtitle>
121 <segtitle>Installed Libraries</segtitle>
122 <segtitle>Installed Directories</segtitle>
123
124 <seglistitem>
125 <seg>ccmake, cmake, cmake-gui, cpack and ctest</seg>
126 <seg>none</seg>
127 <seg>/usr/share/cmake-&cmake-major-version; and
128 /usr/share/doc/cmake-&cmake-version;</seg>
129 </seglistitem>
130 </segmentedlist>
131
132
133 <variablelist>
134 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
135 <?dbfo list-presentation="list"?>
136 <?dbhtml list-presentation="table"?>
137
138 <varlistentry id="ccmake">
139 <term><command>ccmake</command></term>
140 <listitem>
141 <para>is a curses based interactive frontend to cmake.</para>
142 <indexterm zone="cmake ccmake">
143 <primary sortas="b-ccmake">ccmake</primary>
144 </indexterm>
145 </listitem>
146 </varlistentry>
147
148 <varlistentry id="c_make">
149 <term><command>cmake</command></term>
150 <listitem>
151 <para>is the makefile generator.</para>
152 <indexterm zone="cmake c_make">
153 <primary sortas="b-cmake">cmake</primary>
154 </indexterm>
155 </listitem>
156 </varlistentry>
157
158 <varlistentry id="cmake-gui">
159 <term><command>cmake-gui</command></term>
160 <listitem>
161 <para>is the Qt-based frontent to CMake.</para>
162 <indexterm zone="cmake cmake-gui">
163 <primary sortas="b-cmake-gui">cmake-gui</primary>
164 </indexterm>
165 </listitem>
166 </varlistentry>
167
168 <varlistentry id="cpack">
169 <term><command>cpack</command></term>
170 <listitem>
171 <para>is the CMake packaging program.</para>
172 <indexterm zone="cmake cpack">
173 <primary sortas="b-cpack">cpack</primary>
174 </indexterm>
175 </listitem>
176 </varlistentry>
177
178 <varlistentry id="ctest">
179 <term><command>ctest</command></term>
180 <listitem>
181 <para>is a testing utility for cmake-generated build trees.</para>
182 <indexterm zone="cmake ctest">
183 <primary sortas="b-ctest">ctest</primary>
184 </indexterm>
185 </listitem>
186 </varlistentry>
187
188 </variablelist>
189
190 </sect2>
191
192</sect1>
Note: See TracBrowser for help on using the repository browser.