CMake

CMake
Developer(s) Andy Cedilnik, Bill Hoffman, Brad King, Ken Martin, Alexander Neundorf
Initial release 2000 (2000)
Stable release
3.7.0[1] / November 13, 2016 (2016-11-13)[2]
Repository gitlab.kitware.com/cmake/cmake/tree/master
Development status Active
Written in C, C++[3]
Operating system Cross-platform
Type Software development tools
License New BSD License
Website www.cmake.org

CMake is cross-platform free and open-source software for managing the build process of software using a compiler-independent method. It supports directory hierarchies and applications that depend on multiple libraries. It is used in conjunction with native build environments such as make, Apple's Xcode, and Microsoft Visual Studio. It has minimal dependencies, requiring only a C++ compiler on its own build system.

Features

CMake can handle in-place and out-of-place builds, enabling several builds from the same source tree, and cross-compilation. The ability to build a directory tree outside the source tree is a key feature, ensuring that if a build directory is removed, the source files remain unaffected.

CMake can locate executables, files, and libraries. These locations are stored in a cache, which can then be tailored before generating the target build files. The cache can be edited with a graphical editor which is included in the project.

Complicated directory hierarchies and applications that rely on several libraries are well supported by CMake. For instance, CMake is able to accommodate a project that has multiple toolkits, or libraries that each have multiple directories. In addition, CMake can work with projects that require executables to be created before generating code to be compiled for the final application. Its open-source, extensible design allows CMake to be adapted as necessary for specific projects.[4]

CMake can generate makefiles for many platforms and IDEs including Unix, Windows, Mac OS X, OS/2, MSVC, Cygwin, MinGW and Xcode.

Microsoft Visual Studio

CMake scripts can produce Microsoft Visual Studio project and solution files. However, CMake's syntax is more oriented towards Unix and Linux makefiles, while Visual Studio development relies primarily on project->properties GUI.[5]

Build process

The build process with CMake takes place in two stages. First, standard build files are created from configuration files. Then the platform's native build tools are used for the actual building.[4]

Each build project contains a CMakeLists.txt file in every directory that controls the build process. The CMakeLists.txt file has one or more commands in the form COMMAND (args...), with COMMAND representing the name of each command and args the list of arguments, each separated by white space. While there are many built-in rules for compiling the software libraries (static and dynamic) and executables, there are also provisions for custom build rules. Some build dependencies can be determined automatically. Advanced users can also create and incorporate additional makefile generators to support their specific compiler and OS needs.

History

CMake development began in 1999 in response to the need for a cross-platform build environment for the Insight Segmentation and Registration Toolkit (ITK).[6] The project is funded by the United States National Library of Medicine as part of the Visible Human Project. It was partially inspired by pcmaker, which was made by Ken Martin and other developers to support the Visualization Toolkit (VTK). At Kitware, Bill Hoffman blended components of pcmaker with his own ideas, striving to mimic the functionality of Unix configure scripts. CMake was first implemented in 2000 and further developed in 2001. Continued development and improvements were fueled by the incorporation of CMake into developers’ own systems, including the VXL Project, The CABLE[7] features added by Brad King, and GE Corporate R&D for support of DART.

Additional features were created when VTK transitioned to CMake for its build environment and for supporting ParaView.

Applications that use CMake

See also

References

  1. "Download CMake". CMake. Retrieved 2016-11-25.
  2. Maynard, Robert (11 November 2016). "CMake 3.7.0 available for download". Kitware. Retrieved 2016-11-25.
  3. "The CMake Open Source Project on OpenHub". OpenHub. Retrieved 2016-04-09.
  4. 1 2 3 4 Neundorf, Alexander (2006-06-21). "Why the KDE project switched to CMake—and how". LWN.net.
  5. "CMake and Visual Studio".
  6. "FLOSS Weekly 111: CMake". podcast. TWiT Network. Retrieved 27 February 2011.
  7. The CABLE
  8. Bridgwater, Adrian (13 September 2014). "JetBrains CLion: A New Cross Platform C/C++ IDE". infoworld.
  9. Krill, Paul (14 September 2014). "Version 1.0 of JetBrains' CLion IDE will include C/C++ support". infoworld.
  10. Conky README.cmake file
  11. "Compiling YARP and iCub". iCub user manual. Archived from the original on 2010-03-14.
  12. 1 2 3 4 Hoffman, Bill. "CMake / CTest / CPack: Open source tools to build, test, and install software" (PDF). BoostCon 2009.
  13. "Qt Doc / CMake Manual". Digia.

External links

This article is issued from Wikipedia - version of the 11/25/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.