• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..07-May-2022-

Auxiliary/H07-Dec-2021-5,4745,045

Help/H07-Dec-2021-72,77953,095

Licenses/H07-Dec-2021-677551

Modules/H03-May-2022-111,78493,297

Packaging/H07-May-2022-151131

Source/H03-May-2022-338,389260,712

Templates/H07-May-2022-25,13025,039

Tests/H03-May-2022-220,411179,287

Utilities/H07-Dec-2021-513,464360,466

.clang-formatH A D07-Dec-20211.4 KiB5251

.clang-tidyH A D07-Dec-20211.1 KiB4140

CMakeCPack.cmakeH A D07-Dec-20219.8 KiB268242

CMakeCPackOptions.cmake.inH A D07-Dec-202111.9 KiB314263

CMakeGraphVizOptions.cmakeH A D07-Dec-2021153 21

CMakeLists.txtH A D07-Dec-202134 KiB900813

CONTRIBUTING.rstH A D07-Dec-20213 KiB7860

CTestConfig.cmakeH A D07-Dec-2021566 1713

CTestCustom.cmake.inH A D07-Dec-20216.6 KiB124115

CompileFlags.cmakeH A D07-Dec-20214.7 KiB139120

Copyright.txtH A D07-Dec-20215.2 KiB133116

DartConfig.cmakeH A D07-Dec-2021374 118

README.rstH A D07-Dec-20213.9 KiB13391

bootstrapH A D03-May-202262.6 KiB2,0231,759

cmake_uninstall.cmake.inH A D07-Dec-2021789 2321

configureH A D07-Dec-202199 42

doxygen.configH A D07-Dec-202127.4 KiB698496

README.rst

1CMake
2*****
3
4Introduction
5============
6
7CMake is a cross-platform, open-source build system generator.
8For full documentation visit the `CMake Home Page`_ and the
9`CMake Documentation Page`_. The `CMake Community Wiki`_ also
10references useful guides and recipes.
11
12.. _`CMake Home Page`: https://cmake.org
13.. _`CMake Documentation Page`: https://cmake.org/documentation
14.. _`CMake Community Wiki`: https://gitlab.kitware.com/cmake/community/-/wikis/home
15
16CMake is maintained and supported by `Kitware`_ and developed in
17collaboration with a productive community of contributors.
18
19.. _`Kitware`: http://www.kitware.com/cmake
20
21License
22=======
23
24CMake is distributed under the OSI-approved BSD 3-clause License.
25See `Copyright.txt`_ for details.
26
27.. _`Copyright.txt`: Copyright.txt
28
29Building CMake
30==============
31
32Supported Platforms
33-------------------
34
35* Microsoft Windows
36* Apple macOS
37* Linux
38* FreeBSD
39* OpenBSD
40* Solaris
41* AIX
42
43Other UNIX-like operating systems may work too out of the box, if not
44it should not be a major problem to port CMake to this platform.
45Please post to the `CMake Discourse Forum`_ to ask if others have
46had experience with the platform.
47
48.. _`CMake Discourse Forum`: https://discourse.cmake.org
49
50Building CMake from Scratch
51---------------------------
52
53UNIX/Mac OSX/MinGW/MSYS/Cygwin
54^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
55
56You need to have a C++ compiler (supporting C++11) and a ``make`` installed.
57Run the ``bootstrap`` script you find in the source directory of CMake.
58You can use the ``--help`` option to see the supported options.
59You may use the ``--prefix=<install_prefix>`` option to specify a custom
60installation directory for CMake.  Once this has finished successfully,
61run ``make`` and ``make install``.
62
63For example, if you simply want to build and install CMake from source,
64you can build directly in the source tree::
65
66  $ ./bootstrap && make && sudo make install
67
68Or, if you plan to develop CMake or otherwise run the test suite, create
69a separate build tree::
70
71  $ mkdir cmake-build && cd cmake-build
72  $ ../cmake-source/bootstrap && make
73
74Windows
75^^^^^^^
76
77There are two ways for building CMake under Windows:
78
791. Compile with MSVC from VS 2015 or later.
80   You need to download and install a binary release of CMake.  You can get
81   these releases from the `CMake Download Page`_.  Then proceed with the
82   instructions below for `Building CMake with CMake`_.
83
842. Bootstrap with MinGW under MSYS2.
85   Download and install `MSYS2`_.  Then install the required build tools::
86
87     $ pacman -S --needed git base-devel mingw-w64-x86_64-gcc
88
89   and bootstrap as above.
90
91.. _`CMake Download Page`: https://cmake.org/download
92.. _`MSYS2`: https://www.msys2.org/
93
94Building CMake with CMake
95-------------------------
96
97You can build CMake as any other project with a CMake-based build system:
98run the installed CMake on the sources of this CMake with your preferred
99options and generators. Then build it and install it.
100For instructions how to do this, see documentation on `Running CMake`_.
101
102.. _`Running CMake`: https://cmake.org/runningcmake
103
104To build the documentation, install `Sphinx`_ and configure CMake with
105``-DSPHINX_HTML=ON`` and/or ``-DSPHINX_MAN=ON`` to enable the "html" or
106"man" builder.  Add ``-DSPHINX_EXECUTABLE=/path/to/sphinx-build`` if the
107tool is not found automatically.
108
109.. _`Sphinx`: http://sphinx-doc.org
110
111Reporting Bugs
112==============
113
114If you have found a bug:
115
1161. If you have a patch, please read the `CONTRIBUTING.rst`_ document.
117
1182. Otherwise, please post to the `CMake Discourse Forum`_ and ask about
119   the expected and observed behaviors to determine if it is really
120   a bug.
121
1223. Finally, if the issue is not resolved by the above steps, open
123   an entry in the `CMake Issue Tracker`_.
124
125.. _`CMake Issue Tracker`: https://gitlab.kitware.com/cmake/cmake/-/issues
126
127Contributing
128============
129
130See `CONTRIBUTING.rst`_ for instructions to contribute.
131
132.. _`CONTRIBUTING.rst`: CONTRIBUTING.rst
133