[Cmake-commits] [cmake-commits] hoffman committed Install.html NONE 1.1 install.html 1.8 NONE
cmake-commits at cmake.org
cmake-commits at cmake.org
Mon Apr 7 14:44:37 EDT 2008
Update of /cvsroot/CMake/CMakeWeb/HTML
In directory public:/mounts/ram/cvs-serv8123
Added Files:
Install.html
Removed Files:
install.html
Log Message:
ENH: change case to match old site
--- install.html DELETED ---
--- NEW FILE: Install.html ---
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>CMake Cross Platform Make</title></title>
<link href="kitware.css" rel="stylesheet" type="text/css" />
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
<!--[if lte IE 6]>
<link href="styleIE6.css" rel="stylesheet" type="text/css" />
<![endif]-->
<meta name="Description" content="CMake is an open-source,
cross-platfom build environment. It supports native build processes
on Unix and Windows platforms under a variety of compilers." />
<meta name="Keywords" content="Software, compile, make, build, cross-platform" />
<META NAME="rating" CONTENT="General">
<META NAME="ROBOTS" CONTENT="ALL">
<script language="JavaScript">
function SubmitSearch()
{
var searchText = document.getElementById("searchtext").value;
window.location = "http://www.google.com/search?q=site%3Awww.cmake.org+"+searchText;
return false;
}
</script>
</head>
<body>
<div id="bg">
<div id="frame">
<div id="banner">
<div id="search">
<form id="searchform" onSubmit="return SubmitSearch()">
<input name="searchtext" type="text" class="searchfield" id="searchtext" value="Search" onfocus="this.value=''"/>
</form>
</div>
<div id="projectLogo"></div>
<div id="nav">
<ul id="MenuBar1" class="MenuBarHorizontal">
<li><a class="MenuBarItemSubmenu" href="index.html">HOME</a>
<ul>
<li><a href="About.html">About</a></li>
<li><a href="Copyright.html">Copyright</a></li>
<li><a href="participants.html">Participants</a></li>
<li><a href="News.html">News</a></li>
<li><a href="http://www.cdash.org">CDash</a></li>
<li><a href="http://www.kitware.com">Kitware</a></li>
</ul>
</li>
<li><a href="#" class="MenuBarItemSubmenu">CMAKE</a>
<ul>
<li><a href="Download.html">Download</a></li>
<li><a href="install.html">Install</a></li>
<li><a href="Documentation.html">Documentation</a></li>
<li><a href="http://www.cmake.org/Wiki/CMake_FAQ">FAQ</a></li>
<li><a href="http://www.kitware.com/products/cmakebook.html">CMake Book</a></li>
</ul>
</li>
<li><a class="MenuBarItemSubmenu" href="#">DEVELOPERS</a>
<ul>
<li><a href="http://public.kitware.com/CDash/index.php?project=CMake">Dashboard</a></li>
<li><a href="http://public.kitware.com/Bug">Bug Tracker</a> </li>
<li><a href="MailingLists.html">Mailing list</a></li>
<li><a href="http://www.cmake.org/Wiki/CMake">Wiki</a></li>
<li><a href="Testing.html">Testing Setup</a></li>
</ul>
</li>
</ul>
</div>
<div id="logo">
<map name="Map" id="Map">
<area shape="poly" coords="5,82,5,5,94,32,296,32,294,81" href="../index.html" alt="Home" />
</map></div>
</div>
<div id="ContentBg">
<div id="Content">
<div id="ContentTxtProdWide"><div id="install_header"></div><br />
There are several ways to install <strong>CMake</strong>, depending on your platform.
<h3>Windows</h3> There is a pre-compiled binary available on the
<a href="Download.html">Download</a> page. It is provided as an
executable installer. One may also download and build CMake from source.
The download page also provides source releases and instructions for
CVS access.
<p>
In order to build CMake from a source tree, you must first install the
latest binary version of CMake because it is used for building the source
tree. Once the binary is installed, run it on CMake as you would any
other project. Typically this means selecting CMake as the Source
directory and then selecting a binary directory for the resulting
executables.
</p><h3>Linux, Mac OSX, UNIX & Cygwin </h3> There are pre-compiled binaries
available on the <a href="Download.html">Download</a> page for many UNIX
platforms.
<p>
<ul>
There are several possible approaches for building CMake from a source tree:<br><br>
</p><li>If there is no existing CMake installation, a bootstrap script
is provided:<pre> ./bootstrap
make
make install</pre>
(Note: the make install step is optional, cmake will run from the build directory.)<br><br>
</li><li>An existing CMake installation can be used to build a new version:<pre> cmake .
make
make install</pre>
(Note: the make install step is optional, cmake will run from the build directory.)<br><br>
</li><li>
On UNIX, if you are not using the GNU C++ compiler, you need to tell the bootstrap which compiler you want to use. This is done by setting the environment variables CC and CXX before running configure.
For example on the SGI with the 7.3X compiler, you build like this:
<pre> (setenv CXX CC; setenv CC cc; ./bootstrap)
make
make install
</pre>
</li><li>For more options with bootstrap, run ./bootstrap --help</li>
</ul>
</div>
<br class="clear" />
<br />
</div>
</div>
<div id="footer"><br />©2008 Copyright Kitware, Inc.</div>
</div>
</div>
<script type="text/javascript">
<!--
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
//-->
</script>
</body>
</html>
More information about the Cmake-commits
mailing list