Main Content

Configure CMake Build Process

CMake is a third-party, open-source tool for build process management. To build code generated from MATLAB® code, the software provides CMake toolchain definitions for:

  • Microsoft® Visual C++® and MinGW® on Windows®, GCC on Linux®, and Xcode on Mac computers, using Ninja and makefile generators.

  • Microsoft Visual Studio® and Xcode project builds.

If a supported toolchain is installed on your development computer, you can specify the corresponding CMake toolchain definition during code generation. When you generate code, CMake:

  1. Uses configuration (CMakeLists.txt) files to generate standard build files.

  2. Runs the compiler and other build tools to create executable code.

You can also:

Specify CMake Toolchain Definition

Using MATLAB Coder App

In the Generate Code, step, on the More Settings > Hardware tab:

  1. Specify your hardware board and, optionally, hardware implementation parameters. This information determines the selection of toolchain definitions that is available. The default value, MATLAB Host Computer, is applicable for deploying to the computer where MATLAB is running. For more information, see Available CMake Toolchain Definitions.

  2. Specify these build process parameters:

    • Toolchain — From the drop-down list, select a CMake toolchain definition.

    • Build configuration — Select one of these values:

      • Release — Optimizations enabled.

      • Debug — Optimizations disabled, debug symbols generated.

      • RelWithDebInfo — Optimizations enabled, debug symbols generated.

      • MinSizeRel — Optimized for size, debug symbols not generated.

      • Specify — Enables you to specify toolchain details through the CMake Configure and CMake Build fields.

    • Toolchain details — If Build configuration is Specify, populate these fields:

      • CMake Configure — Additional command-line arguments to pass to CMake when generating the project build system builder artifacts for the downstream tools.

      • CMake Build — Additional command-line arguments to pass to CMake when using it in build mode.

At Command Line

In a coder.CodeConfig or coder.EmbeddedCodeConfig object:

  1. If necessary, configure the target hardware by assigning a coder.hardware object to the Hardware property or modifying the HardwareImplementation property by assigning a coder.HardwareImplementation object. This information determines the selection of toolchain definitions that is available. For more information, see Available CMake Toolchain Definitions.

  2. Specify the build process by assigning the Toolchain and the BuildConfiguration properties. If you set BuildConfiguration to 'Specify', use the CustomToolchainOptions property for customization of settings for tools in the selected toolchain. For more information on the available BuildConfiguration options, see the previous section.

For more information, see https://cmake.org/cmake/help/latest/manual/cmake.1.html.

Available CMake Toolchain Definitions

PlatformShipped Toolchain DefinitionDevice Vendor and Type that Make Definition Available
WindowsMicrosoft Visual C++ 2017 v15.0 | CMake/nmake (64-bit Windows)

Intel-x86-64 (Windows64)

AMD-x86-64 (Windows64)

Microsoft Visual C++ 2017 v15.0 | CMake/Ninja (64-bit Windows)
Microsoft Visual Studio Project 2017 | CMake (64-bit Windows)
Microsoft Visual Studio Project 2019 | CMake (64-bit Windows)
Microsoft Visual C++ 2019 v16.0 | CMake/Ninja (64-bit Windows)
Microsoft Visual C++ 2022 v17.0 | CMake/nmake (64-bit Windows)
Microsoft Visual C++ 2022 v17.0 | CMake/Ninja (64-bit Windows)
MinGW64 | CMake/gmake (64-bit Windows)
MinGW64 | CMake/Ninja (64-bit Windows)
Microsoft Visual C++ 2017 v15.0 | CMake/nmake (32-bit Windows)

Intel-x86-32 (Windows32)

AMD-x86-32 (Windows32)

Microsoft Visual C++ 2017 v15.0 | CMake/Ninja (32-bit Windows)
Microsoft Visual Studio Project 2017 | CMake (32-bit Windows)
Microsoft Visual Studio Project 2019 | CMake (32-bit Windows)
Microsoft Visual C++ 2019 v16.0 | CMake/nmake (32-bit Windows)
Microsoft Visual C++ 2019 v16.0 | CMake/Ninja (32-bit Windows)
Microsoft Visual C++ 2022 v17.0 | CMake/nmake (32-bit Windows)
Microsoft Visual C++ 2022 v17.0 | CMake/Ninja (32-bit Windows)
LinuxGNU gcc/g++ | CMake/gmake (64-bit Linux)

Intel-x86-64 (Linux 64)

AMD-x86-64 (Linux 64)

GNU gcc/g++ | CMake/Ninja (64-bit Linux)
MacXcode with Clang | CMake/gmake (64-bit Mac)

Intel-x86-64 (Mac OS X)

AMD-x86-64 (Mac OS X)

Xcode with Clang | CMake/Ninja (64-bit Mac)
Xcode with Clang Project | CMake (64-bit Mac)

Note

If the Test hardware is the same as production hardware check box is not selected, the Test hardware settings for device vendor and type control the availability of shipped toolchain definitions.

Generate Only Code and CMake Configuration File for Algorithm Export

When you generate only the C/C++ source code for your MATLAB code, you can instruct the code generator to also produce a CMakeLists.txt file that does not depend on specific build tools. Do one of the following:

  • In a coder.CodeConfig or coder.EmbeddedCodeConfig object, set the Toolchain property to "CMake".

  • In the MATLAB Coder™ app, in the Generate Code step, on the More Settings > Hardware tab, set Toolchain to CMake.

To export generated code to another development environment, use this workflow:

  1. Package the generated code to produce a ZIP file that contains the source code and CMake configuration file. Use the hierarchical packaging type. See packNGo and Package Code for Other Development Environments.

  2. Relocate the ZIP file to your development environment.

  3. Unzip the packaged files.

  4. Use the CMake build tool and configuration file to create an executable file.

If the ZIP file contains mlrFiles.zip, static dependencies from your matlabroot folder tree, you must specify the location of the unzipped files for the CMake build tool. In your development environment, set the MATLAB_ROOT CMake cache entry by running this command:

cmake -S pathToSource -B pathToProposedLocationOfDerivedFiles 
-DMATLAB_ROOT=pathToUnzippedmlrFiles

See Also

| | | | |

Related Topics

External Websites