diff options
author | Brad King <brad.king@kitware.com> | 2022-01-13 20:22:56 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-01-13 20:23:04 (GMT) |
commit | 6baf3b27c968a08e55ada33a47b6e68c618668cf (patch) | |
tree | abb7d459e8f80487eda91d0b5b30928fda60103f /Help/guide | |
parent | 2f7444949c8a1388a28acb78d8629edeacfe5420 (diff) | |
parent | 6a5936c596f780e4561d1d09d31beadb82f811d9 (diff) | |
download | CMake-6baf3b27c968a08e55ada33a47b6e68c618668cf.zip CMake-6baf3b27c968a08e55ada33a47b6e68c618668cf.tar.gz CMake-6baf3b27c968a08e55ada33a47b6e68c618668cf.tar.bz2 |
Merge topic 'ide_guide'
6a5936c596 Help: Add IDE Integration Guide section on IDEs supporting CMake
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6851
Diffstat (limited to 'Help/guide')
-rw-r--r-- | Help/guide/ide-integration/index.rst | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Help/guide/ide-integration/index.rst b/Help/guide/ide-integration/index.rst index 0d818c2..8473481 100644 --- a/Help/guide/ide-integration/index.rst +++ b/Help/guide/ide-integration/index.rst @@ -130,3 +130,31 @@ obtain this information and use it to present the user with a list of tests. IDEs should not invoke the ``test`` target of the generated buildsystem. Instead, they should invoke :manual:`ctest(1)` directly. + +IDEs with CMake integration +=========================== + +The following IDEs support CMake natively: + +* `CLion`_ +* `KDevelop`_ +* `QtCreator`_ +* `Vim`_ (via a plugin) +* `Visual Studio`_ +* `VSCode`_ (via a plugin) + +.. _CLion: https://www.jetbrains.com/clion/ +.. _KDevelop: https://www.kdevelop.org/ +.. _QtCreator: https://www.qt.io/product/development-tools +.. _Vim: https://www.vim.org/ +.. _Visual Studio: https://visualstudio.microsoft.com/ +.. _VSCode: https://code.visualstudio.com/ + +Additionally, CMake has builtin support for some IDEs: + +* :ref:`IDE Build Tool Generators`: + Generate IDE native build systems such as Visual Studio or Xcode. +* :ref:`Extra Generators`: + Extend :ref:`Command-Line Build Tool Generators` to generate IDE + project files that hook into the command-line build system. + Superseded by the :manual:`File API <cmake-file-api(7)>`. |