Developer(s) | Andy Cedilnik, Bill Hoffman, Brad King, Ken Martin, Alexander Neundorf |
---|---|
Initial release | 2000 |
Stable release | |
Repository | |
Written in | C, C++ [2] |
Operating system | Cross-platform |
Type | Software development tools |
License | BSD-3-Clause |
Website | cmake |
CMake is a free, cross-platform, software development tool for building applications via compiler-independent instructions. It also can automate testing, packaging and installation. It runs on a variety of platforms and supports many programming languages. [3]
As a meta-build tool, CMake configures native build tools which in turn build the codebase. CMake generates configuration files for other build tools based on CMake-specific configuration files. The other tools are responsible for more directly building; using the generated files. A single set of CMake-specific configuration files can be used to build a codebase using the native build tools of multiple platforms. [4]
Notable native build tools supported by CMake include: Make, Qt Creator, Ninja, Android Studio, Xcode, and Visual Studio. [4]
CMake is distributed as free and open-source software under a permissive BSD-3-Clause license. [5]
Initial development began in 1999 at Kitware with funding from the United States National Library of Medicine as part of the Visible Human Project. [4] CMake was first released in 2000.
CMake was developed to support building the Insight Segmentation and Registration Toolkit (ITK) for multiple platforms. Stated goals included addressing weaknesses while maintaining strengths of contemporary tools such as autoconf and libtool, and to align with state of the art build technology of the time: configure scripts and Make files for Unix platforms, and Visual Studio project files for Windows. [6] [4]
CMake was inspired by multiple contemporary tools. pcmaker – developed by Ken Martin and others to support building the Visualization Toolkit (VTK) – converted Unix Make files into NMake files for building on Windows. [4] gmake supported Unix and Windows compilers, but its design led to issues that were hard to resolve. Both tools were working examples of a build tool that supported both Unix and Windows, but they suffered from a serious flaw: they required Windows developers to use the command line even though many prefer to use an integrated development environment (IDE) such as Visual Studio.
CMake was to provide similar cross-platform support but to better satisfy the preferences of the developers on each platform.
The design goals of the first version included: [4]
For various reasons, CMake developers chose to develop a scripting language for CMake instead of using Tcl – a popular language for building at the time. Use of Tcl would have then added a dependency to the host machine which is counter to the goal of no dependencies other than a compiler. Also, Tcl was not well supported on Windows and some Unix systems at the time of initial development. [4]
Subsequent development and improvements were fueled by the incorporation of CMake into developers’ own systems, including the VXL Project,[ clarification needed ] the CABLE [7] features added by Brad King,[ clarification needed ] and GE Corporate R&D for support of DART.[ clarification needed ] Additional features were created when VTK transitioned to CMake for its build environment and for supporting ParaView.
Version 3.0 was released in June 2014. [8] It has been described as the beginning of "Modern CMake". [9] Experts now advise to avoid variables in favor of targets and properties. [10] The commands add_compile_options
, include_directories
, link_directories
, link_libraries
that were at the core of CMake 2 should now be replaced by target-specific commands.
CMake developer Brad King stated that "the 'C' in CMake stands for 'cross-platform'". [11]
Support for each native build tool is provided as a separate generator. CMake uses a particular generator by default for the host environment. Alternatively, a generator can be selected via the command line option -G
. For example, generator Unix Makefiles creates files for make. [4]
CMake does not support custom generators without modifying the CMake implementation. None-the-less, the CMake source code could be modified to include a custom generator.
CMake supports building executables, libraries (e.g. libxyz
, xyz.dll
etc.), object file libraries and pseudo-targets (including aliases). CMake can produce object files that can be linked against by executable binaries/libraries, avoiding dynamic (run-time) linking and using static (compile-time) linking instead. This enables flexibility in configuration of various optimizations. [12]
Target generation can be configured via target properties. With older versions, this was done via CMAKE_
-prefixed global variables, but this approach is deprecated. [10] [13]
CMake configuration files can be structured according the hierarchical structure of the source code; the source tree. A CMakeLists.txt
in a root source directory serves as the root of the configuration. It may include sub-directories which each contain a CMakeLists.txt
. Repeating this, results in a hierarchical structure of configuration that follows the structure of the source code. [10] [13]
CMake can locate generated files (both by CMake and the native build tools) in a directory tree that is separate from the source tree. [4]
This enables multiple builds from the same source tree since each has non-overlapping file system space. This may be leveraged to build different or even incompatible configurations such as for different platforms.
This also simplifies file management by allowing removing generated files by deleting a single directory tree instead of removing multiple files and directories throughout the source tree. This tends to prevent accidentally deleting source files or accidentally adding generated files to source control.
CMake ensures that downstream components are re-built when its sources are changed or built. [4]
CMake can locate system-wide and user-specified 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 shipped with CMake.
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. [14]
CMake can generate project files for several popular IDEs, such as Microsoft Visual Studio, Xcode, and Eclipse CDT. It can also produce build scripts for MSBuild or NMake on Windows; Unix Make on Unix-like platforms such as Linux, macOS, and Cygwin; and Ninja on both Windows and Unix-like platforms.
CMake allows specification of features that the compiler is required to support in order to get the target program or library compiled. [15]
CMake supports many compilers, including: Apple Clang, Clang, GNU GCC, MSVC, Oracle Developer Studio, and Intel C++ Compiler. [16]
CMake can both consume and produce packages. CMake provides functions for pulling packages from a remote server that can be used as part of the build process. Via CPack, files may be packed into an archive file for package manager or installer supported by a target platform. [17] : 132, 142 [18] [19]
Cmake may be run by using a ncurses program like ccmake
that can be used to configure projects via command-line interface.
It's possible to generate precompiled headers via CMake since version 3.6. [20]
CMake supports extracting values into variables from JSON-data strings (since version 3.19). [21]
CMake includes an interpreter for a relatively simple, custom, imperative scripting language that supports variables, string manipulation, arrays, function and macro declaration, and module inclusion (importing).
The interpreter reads CMake language commands from files named CMakeLists.txt
which specify source files and build preferences. CMake uses this information to generate native tool configuration files. Additionally, files with suffix .cmake
can be used for storing additional script. [22]
CMake language commands are formatted as:
name(argument ...)
Arguments are whitespace-separated and can include keywords to separate groups of arguments. For instance, in the following command, the keyword COMPILE_FLAGS
delimits a list of source files from compiler flags. [23]
set_source_file_properties(filename ... COMPILE_FLAGS compile_flag ...)
The CMake scripting language is implemented via Yacc and Lex generators.
The executable programs CMake, CPack, and CTest are written in C++.
Much of CMake's functionality is implemented in modules written in the CMake language. [24]
CMake documentation (since release 3.0) uses reStructuredText markup. HTML pages and man pages are generated by the Sphinx documentation generator.
CMake ships with numerous .cmake
script files and development tools that facilitate tasks such as finding dependencies (both built-in and external, e.g. FindXYZ
modules), testing the toolchain environment and executables, packaging releases (CPack), and managing dependencies on external projects (ExternalProject
module). Additional development tools include: [25] [26]
CMake has been very widely adopted among commercial, open source, and academic software projects. A few notable users include Android NDK, Netflix, Inria, MySQL, Boost (C++ libraries), KeePassXC, KDE, KiCAD, FreeCAD, Webkit, Blender, [29] Biicode, ReactOS, Apache Qpid, the ATLAS experiment, [30] and Second Life. [31]
Building via CMake has a two major stages. [4] First, native build tool configuration files are generated from CMake configuration files – written in the CMake scripting language. The command line syntax is cmake <dir>
where <dir> is a directory that contains a CMakeLists.txt
file. Then, the native build tools are invoked either via CMake (cmake --build <dir>
) or directly via the native tool's interface. The native build tools use the generated files. [14] [32]
The following demonstrates configuring CMake to build a hello world program written in C++, and using CMake to build the program.
hello.cpp:
#include<iostream>intmain(){std::cout<<"Hello, world!"<<std::endl;return0;}
CMakeLists.txt:
cmake_minimum_required(VERSION3.5)project(HelloWorldCXX)add_executable(hellohello.cpp)
To build via CMake, first cd to the directory containing the two files above. Then, generate the native build config files via the cross-platform CMake command:
cmake-Bout.
All generated files will be under the directory out as specified via -B out
.
Then, build via the native build tool as supported thru CMake:
cmake--buildout
The program is then available for running. Via Bash, the command is like ./out/hello
. On Windows, the output file ends with .exe
.
This example demonstrates configuring the preprocessor include path.
hello.cpp:
#include"hello.h"#include<iostream>intmain(){for(inti=0;i<Times;i++){std::cout<<"Hello, world!"<<std::endl;}return0;}
hello.h:
constintTimes=10;
CMakeLists.txt:
cmake_minimum_required(VERSION3.5)project(HelloWorldCXX)include_directories(${PROJECT_SOURCE_DIR})add_executable(hellohello.cpp)
GNU Autoconf is a software development tool for generating a configure script that in turn generates files for building a codebase and for packaging or installing the resulting files. Autoconf is part of the GNU Build System – along with Automake, Libtool, Autoheader and other tools.
The GNU Autotools, also known as the GNU Build System, is a suite of build automation tools designed to support building source code and packaging the resulting binaries. It supports building a codebase for multiple target systems without customizing or modifying the code. It is available on many Linux distributions and Unix-like environments.
In software development, Make is a command-line interface software tool that performs actions ordered by configured dependencies as defined in a configuration file called a makefile. It is commonly used for build automation to build executable code from source code. But, not limited to building, Make can perform any operation available via the operating system shell.
Xcode is Apple's integrated development environment (IDE) for macOS, used to develop software for macOS, iOS, iPadOS, watchOS, tvOS, and visionOS. It was initially released in late 2003; the latest stable release is version 16, released on September 16, 2024, and is available free of charge via the Mac App Store and the Apple Developer website. Registered developers can also download preview releases and prior versions of the suite through the Apple Developer website. Xcode includes command-line tools that enable UNIX-style development via the Terminal app in macOS. They can also be downloaded and installed without the GUI.
MinGW, formerly mingw32, is a free and open source software development environment to create Microsoft Windows applications.
Apache Ant is a software tool for automating software build processes for Java applications which originated from the Apache Tomcat project in early 2000 as a replacement for the Make build tool of Unix. It is similar to Make, but is implemented using the Java language and requires the Java platform. Unlike Make, which uses the Makefile format, Ant uses XML to describe the code build process and its dependencies.
SCons is a software development tool that analyzes source code dependencies and operating system adaptation requirements from a software project description and generates final binary executables for installation on the target operating system platform. Its function is similar to the more popular GNU build system.
Maven is a build automation tool used primarily for Java projects. Maven can also be used to build and manage projects written in C#, Ruby, Scala, and other languages. The Maven project is hosted by The Apache Software Foundation, where it was formerly part of the Jakarta Project.
ITK is a cross-platform, open-source application development framework widely used for the development of image segmentation and image registration programs. Segmentation is the process of identifying and classifying data found in a digitally sampled representation. Typically the sampled representation is an image acquired from such medical instrumentation as CT or MRI scanners. Registration is the task of aligning or developing correspondences between data. For example, in the medical environment, a CT scan may be aligned with an MRI scan in order to combine the information contained in both.
When installing a package on a Unix or Unix-like environment, a configure script is a shell script that generates build configuration files for a codebase to facilitate cross-platform support. It generates files tailoring for the host system – the environment on which the codebase is built and run.
Vala is an object-oriented programming language with a self-hosting compiler that generates C code and uses the GObject system.
Qbs is a cross-platform free and open-source software for managing the build process of software. It was designed to support large, complex projects, written in any number of programming languages, primarily C/C++.
The Java Development Kit (JDK) is a distribution of Java technology by Oracle Corporation. It implements the Java Language Specification (JLS) and the Java Virtual Machine Specification (JVMS) and provides the Standard Edition (SE) of the Java Application Programming Interface (API). It is derivative of the community driven OpenJDK which Oracle stewards. It provides software for working with Java applications. Examples of included software are the Java virtual machine, a compiler, performance monitoring tools, a debugger, and other utilities that Oracle considers useful for Java programmers.
sbt is an open-source build tool which can build Java, Scala, and Kotlin projects. It aims to streamline the procedure of constructing, compiling, testing, and packaging applications, libraries, and frameworks. sbt is highly adaptable, permitting developers to customize the build process according to their project's specific needs.
Dart is a programming language designed by Lars Bak and Kasper Lund and developed by Google. It can be used to develop web and mobile apps as well as server and desktop applications.
Mingw-w64 is a free and open-source suite of development tools that generate Portable Executable (PE) binaries for Microsoft Windows. It was forked in 2005–2010 from MinGW.
Meson is a software build automation tool for building a codebase. Meson adopts a convention over configuration approach to minimize the data required to configure the most common operations. Meson is free and open-source software under the Apache License 2.0.
Ninja is a build system developed by Evan Martin, a Google employee. Ninja has a focus on speed and it differs from other build systems in two major respects: it is designed to have its input files generated by a higher-level build system, and it is designed to run builds as fast as possible.