2014-01-29 15:56:27 +00:00
|
|
|
Contributing to CMake
|
|
|
|
*********************
|
|
|
|
|
2017-02-23 20:56:50 +00:00
|
|
|
The following summarizes the process for contributing changes.
|
|
|
|
See documentation on `CMake Development`_ for more information.
|
|
|
|
|
|
|
|
.. _`CMake Development`: Help/dev/README.rst
|
|
|
|
|
2014-01-29 15:56:27 +00:00
|
|
|
Community
|
|
|
|
=========
|
|
|
|
|
2014-06-03 13:19:57 +00:00
|
|
|
CMake is maintained and supported by `Kitware`_ and developed in
|
2014-02-03 16:10:02 +00:00
|
|
|
collaboration with a productive community of contributors.
|
2016-09-28 19:16:19 +00:00
|
|
|
Please subscribe and post to the `CMake Developers List`_ to raise
|
|
|
|
discussion of development topics.
|
2014-02-03 16:10:02 +00:00
|
|
|
|
2014-06-03 13:19:57 +00:00
|
|
|
.. _`Kitware`: http://www.kitware.com/cmake
|
2015-09-25 19:44:12 +00:00
|
|
|
.. _`CMake Developers List`: https://cmake.org/mailman/listinfo/cmake-developers
|
2014-01-29 15:56:27 +00:00
|
|
|
|
|
|
|
Patches
|
|
|
|
=======
|
|
|
|
|
2016-09-28 19:16:19 +00:00
|
|
|
CMake uses `Kitware's GitLab Instance`_ to manage development and code review.
|
|
|
|
To contribute patches:
|
|
|
|
|
|
|
|
#. Fork the upstream `CMake Repository`_ into a personal account.
|
2018-12-18 15:58:40 +00:00
|
|
|
#. Run `Utilities/SetupForDevelopment.sh`_ for local git configuration.
|
|
|
|
#. See `Building CMake`_ for building CMake locally.
|
2017-04-19 20:19:55 +00:00
|
|
|
#. See the `CMake Source Code Guide`_ for coding guidelines.
|
2019-08-30 15:12:30 +00:00
|
|
|
#. Create a topic branch named suitably for your work.
|
|
|
|
Base all new work on the upstream ``master`` branch.
|
2017-07-21 15:26:56 +00:00
|
|
|
Base work on the upstream ``release`` branch only if it fixes a
|
|
|
|
regression or bug in a feature new to that release.
|
2018-03-13 03:39:32 +00:00
|
|
|
If in doubt, prefer ``master``. Reviewers may simply ask for
|
|
|
|
a rebase if deemed appropriate in particular cases.
|
2017-08-05 10:55:49 +00:00
|
|
|
#. Create commits making incremental, distinct, logically complete changes
|
|
|
|
with appropriate `commit messages`_.
|
2019-08-30 15:12:30 +00:00
|
|
|
#. Push the topic branch to a personal repository fork on GitLab.
|
2017-07-21 15:26:56 +00:00
|
|
|
#. Create a GitLab Merge Request targeting the upstream ``master`` branch
|
|
|
|
(even if the change is intended for merge to the ``release`` branch).
|
2018-08-06 11:44:00 +00:00
|
|
|
Check the box labelled "Allow commits from members who can merge to the
|
|
|
|
target branch". This will allow maintainers to make minor edits on your
|
|
|
|
behalf.
|
2016-09-28 19:16:19 +00:00
|
|
|
|
2017-02-23 19:56:00 +00:00
|
|
|
The merge request will enter the `CMake Review Process`_ for consideration.
|
|
|
|
|
2016-09-28 19:16:19 +00:00
|
|
|
.. _`Kitware's GitLab Instance`: https://gitlab.kitware.com
|
|
|
|
.. _`CMake Repository`: https://gitlab.kitware.com/cmake/cmake
|
2017-02-23 19:10:56 +00:00
|
|
|
.. _`Utilities/SetupForDevelopment.sh`: Utilities/SetupForDevelopment.sh
|
2018-12-18 15:58:40 +00:00
|
|
|
.. _`Building CMake`: README.rst#building-cmake
|
2017-04-19 20:19:55 +00:00
|
|
|
.. _`CMake Source Code Guide`: Help/dev/source.rst
|
2017-08-05 10:55:49 +00:00
|
|
|
.. _`commit messages`: Help/dev/review.rst#commit-messages
|
2017-02-23 19:56:00 +00:00
|
|
|
.. _`CMake Review Process`: Help/dev/review.rst
|
2014-01-29 15:56:27 +00:00
|
|
|
|
2018-08-01 20:58:25 +00:00
|
|
|
CMake Dashboard Client
|
|
|
|
======================
|
|
|
|
|
|
|
|
The *integration testing* step of the `CMake Review Process`_ uses a set of
|
|
|
|
testing machines that follow an integration branch on their own schedule to
|
|
|
|
drive testing and submit results to the `CMake CDash Page`_. Anyone is
|
|
|
|
welcome to provide testing machines in order to help keep support for their
|
|
|
|
platforms working.
|
|
|
|
|
|
|
|
See documentation on `CMake Testing Process`_ for more information.
|
|
|
|
|
|
|
|
.. _`CMake CDash Page`: https://open.cdash.org/index.php?project=CMake
|
|
|
|
.. _`CMake Testing Process`: Help/dev/testing.rst
|
|
|
|
|
2014-01-29 15:56:27 +00:00
|
|
|
License
|
|
|
|
=======
|
|
|
|
|
|
|
|
We do not require any formal copyright assignment or contributor license
|
|
|
|
agreement. Any contributions intentionally sent upstream are presumed
|
2015-07-02 13:08:35 +00:00
|
|
|
to be offered under terms of the OSI-approved BSD 3-clause License.
|
2014-01-29 15:56:27 +00:00
|
|
|
See `Copyright.txt`_ for details.
|
|
|
|
|
|
|
|
.. _`Copyright.txt`: Copyright.txt
|