Mirror of CMake upstream repository
Go to file
2007-07-16 10:59:29 -04:00
Docs ENH: merge files from main tree to 2.4 2006-10-13 10:58:12 -04:00
Example ENH: updte to lower case and using ADD_SUBDIRECTORY 2005-06-27 12:44:11 -04:00
Modules ENH: RC 11 2007-06-29 12:58:18 -04:00
Source COMP: fix warning in release branch 2007-07-01 22:55:07 -04:00
Templates ENH: move changes from main tree 2006-10-27 16:01:56 -04:00
Tests ENH: RC 11 2007-06-29 12:58:18 -04:00
Utilities ENH: merge in changes from branch 2007-02-05 13:22:02 -05:00
.gitattributes *** empty log message *** 2000-08-29 10:56:51 -04:00
bootstrap ENH: move changes from main tree 2006-10-27 16:01:56 -04:00
ChangeLog.manual ENH: RC 11 2007-06-29 12:58:18 -04:00
ChangeLog.txt ENH: put cvs2cl changelog to match branch 2006-04-19 12:58:15 -04:00
cmake_uninstall.cmake.in ENH: merge in changes from branch 2007-02-05 13:22:02 -05:00
cmake.1 ENH: Initial checkin of unix manpage. 2002-08-08 11:58:30 -04:00
CMakeGraphVizOptions.cmake ENH: Add a way to overwrite some preferences and ignore certain targets 2006-03-07 15:31:05 -05:00
CMakeLists.txt ENH: final 2.4.7 commit 2007-07-16 10:59:29 -04:00
CMakeLogo.gif ENH: CMakeLogo for Dart to use on testing web page. 2001-08-07 08:46:26 -04:00
configure ENH: Configure script now just invokes bootstrap script. 2003-06-23 08:58:19 -04:00
Copyright.txt ENH: move files from main tree to 2.4.1 2006-04-30 10:59:20 -04:00
CTestConfig.cmake ENH: merge in changes from main tree and change version to 2.4.1-beta 2006-04-29 11:49:22 -04:00
CTestCustom.ctest.in ENH: move changes from main tree 2006-10-27 16:01:56 -04:00
DartConfig.cmake ENH: handle the fact the public can no longer do ftp 2006-06-14 13:41:57 -04:00
doxygen.config ENH: move changes from main tree 2006-10-27 16:01:56 -04:00
Readme.txt ENH: final 2.4.7 commit 2007-07-16 10:59:29 -04:00

This is CMake, the cross-platform, open-source make system.
CMake is free software under a BSD-like license, see Copyright.txt.
For documentation see the Docs/ directory once you have built CMake 
or visit http://www.cmake.org.


Building CMake
==============


Supported Platforms
-------------------

MS Windows, Mac OS X, Linux, FreeBSD, Solaris, HP-UX, IRIX, BeOS, QNX

Other UNIX-like operating systems may work too out of the box, if not
it shouldn't be a major problem to port CMake to this platform. Contact the
CMake mailing list in this case: http://www.cmake.org/mailman/listinfo/cmake


If you don't have any previous version of CMake already installed
--------------------------------------------------------------

* UNIX/Mac OSX/MinGW/MSYS/Cygwin:

You need to have a compiler and a make installed.
Run the bootstrap script you find the in the source directory of CMake.
You can use the --help option to see the supported options.
You may want to use the --prefix=<install_prefix> option to specify a custom
installation directory for CMake. You can run the bootstrap script from
within the CMake source directory or any other build directory of your
choice. Once this has finished successfully, run make and make install.
So basically it's the same as you may be used to from autotools-based
projects:

$ ./bootstrap; make; make install


* Other Windows: 

You need to download and install a binary release of CMake in order to build
CMake.  You can get these releases from 
http://www.cmake.org/HTML/Download.html .  Then proceed with the instructions
below.


You already have a version of CMake installed
---------------------------------------------

You can build CMake as any other project with a CMake-based build system:
run the installed CMake on the sources of this CMake with your preferred
options and generators. Then build it and install it.
For instructions how to do this, see http://www.cmake.org/HTML/RunningCMake.html