<labelid="sidebar-toggle"class="icon-button"for="sidebar-toggle-anchor"title="Toggle Table of Contents"aria-label="Toggle Table of Contents"aria-controls="sidebar">
<inputtype="search"id="searchbar"name="searchbar"placeholder="Search this book ..."aria-controls="searchresults-outer"aria-describedby="searchresults-header">
<li>Build libraries/binaries with CMake from sources using cmake rule</li>
<li>Use cmake targets in <ahref="https://docs.bazel.build/versions/master/be/c-cpp.html#cc_library">cc_library</a>, <ahref="https://docs.bazel.build/versions/master/be/c-cpp.html#cc_binary">cc_binary</a> targets as dependency</li>
<li>Bazel <ahref="https://docs.bazel.build/versions/master/be/c-cpp.html#cc_toolchain">cc_toolchain</a> parameters are used inside cmake build</li>
<li>See full list of cmake arguments below 'example'</li>
<li>Works on Ubuntu, Mac OS and Windows (<em>see special notes below in Windows section</em>) operating systems</li>
</ul>
<p><strong>Example:</strong>
(Please see full examples in ./examples)</p>
<p>The example for <strong>Windows</strong> is below, in the section 'Usage on Windows'.</p>
<ul>
<li>In <code>WORKSPACE.bazel</code>, we use a <code>http_archive</code> to download tarballs with the libraries we use.</li>
<li>In <code>BUILD.bazel</code>, we instantiate a <code>cmake</code> rule which behaves similarly to a <ahref="https://docs.bazel.build/versions/master/be/c-cpp.html#cc_library">cc_library</a>, which can then be used in a C++ rule (<ahref="https://docs.bazel.build/versions/master/be/c-cpp.html#cc_binary">cc_binary</a> in this case).</li>
<tr><tdstyle="text-align: left"><aid="cmake-name"></a>name</td><tdstyle="text-align: left">A unique name for this target.</td><tdstyle="text-align: left"><ahref="https://bazel.build/concepts/labels#target-names">Name</a></td><tdstyle="text-align: left">required</td><tdstyle="text-align: left"></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-additional_inputs"></a>additional_inputs</td><tdstyle="text-align: left"><strong>deprecated</strong>: Please use the <code>build_data</code> attribute.</td><tdstyle="text-align: left"><ahref="https://bazel.build/concepts/labels">List of labels</a></td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-additional_tools"></a>additional_tools</td><tdstyle="text-align: left"><strong>deprecated</strong>: Please use the <code>build_data</code> attribute.</td><tdstyle="text-align: left"><ahref="https://bazel.build/concepts/labels">List of labels</a></td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-alwayslink"></a>alwayslink</td><tdstyle="text-align: left">Optional. if true, link all the object files from the static library, even if they are not used.</td><tdstyle="text-align: left">Boolean</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>False</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-build_args"></a>build_args</td><tdstyle="text-align: left">Arguments for the CMake build command</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-build_data"></a>build_data</td><tdstyle="text-align: left">Files needed by this rule only during build/compile time. May list file or rule targets. Generally allows any target.</td><tdstyle="text-align: left"><ahref="https://bazel.build/concepts/labels">List of labels</a></td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-cache_entries"></a>cache_entries</td><tdstyle="text-align: left">CMake cache entries to initialize (they will be passed with <code>-Dkey=value</code>) Values, defined by the toolchain, will be joined with the values, passed here. (Toolchain values come first)</td><tdstyle="text-align: left"><ahref="https://bazel.build/rules/lib/dict">Dictionary: String -> String</a></td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>{}</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-copts"></a>copts</td><tdstyle="text-align: left">Optional. Add these options to the compile flags passed to the foreign build system. The flags only take affect for compiling this target, not its dependencies.</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-data"></a>data</td><tdstyle="text-align: left">Files needed by this rule at runtime. May list file or rule targets. Generally allows any target.</td><tdstyle="text-align: left"><ahref="https://bazel.build/concepts/labels">List of labels</a></td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-defines"></a>defines</td><tdstyle="text-align: left">Optional compilation definitions to be passed to the dependencies of this library. They are NOT passed to the compiler, you should duplicate them in the configuration options.</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-deps"></a>deps</td><tdstyle="text-align: left">Optional dependencies to be copied into the directory structure. Typically those directly required for the external building of the library/binaries. (i.e. those that the external build system will be looking for and paths to which are provided by the calling rule)</td><tdstyle="text-align: left"><ahref="https://bazel.build/concepts/labels">List of labels</a></td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-env"></a>env</td><tdstyle="text-align: left">Environment variables to set during the build. <code>$(execpath)</code> macros may be used to point at files which are listed as <code>data</code>, <code>deps</code>, or <code>build_data</code>, but unlike with other rules, these will be replaced with absolute paths to those files, because the build does not run in the exec root. No other macros are supported.Variables containing <code>PATH</code> (e.g. <code>PATH</code>, <code>LD_LIBRARY_PATH</code>, <code>CPATH</code>) entries will be prepended to the existing variable.</td><tdstyle="text-align: left"><ahref="https://bazel.build/rules/lib/dict">Dictionary: String -> String</a></td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>{}</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-generate_args"></a>generate_args</td><tdstyle="text-align: left">Arguments for CMake's generate command. Arguments should be passed as key/value pairs. eg: <code>["-G Ninja", "--debug-output", "-DFOO=bar"]</code>. Note that unless a generator (<code>-G</code>) argument is provided, the default generators are <ahref="https://cmake.org/cmake/help/latest/generator/Unix%20Makefiles.html">Unix Makefiles</a> for Linux and MacOS and <ahref="https://cmake.org/cmake/help/latest/generator/Ninja.html">Ninja</a> for Windows.</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-generate_crosstool_file"></a>generate_crosstool_file</td><tdstyle="text-align: left">When True, CMake crosstool file will be generated from the toolchain values, provided cache-entries and env_vars (some values will still be passed as <code>-Dkey=value</code> and environment variables). If <code>CMAKE_TOOLCHAIN_FILE</code> cache entry is passed, specified crosstool file will be used When using this option to cross-compile, it is required to specify <code>CMAKE_SYSTEM_NAME</code> in the cache_entries</td><tdstyle="text-align: left">Boolean</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>True</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-install"></a>install</td><tdstyle="text-align: left">If True, the <code>cmake --install</code> comand will be performed after a build</td><tdstyle="text-align: left">Boolean</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>True</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-install_args"></a>install_args</td><tdstyle="text-align: left">Arguments for the CMake install command</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-lib_name"></a>lib_name</td><tdstyle="text-align: left">Library name. Defines the name of the install directory and the name of the static library, if no output files parameters are defined (any of static_libraries, shared_libraries, interface_libraries, binaries_names) Optional. If not defined, defaults to the target's name.</td><tdstyle="text-align: left">String</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>""</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-lib_source"></a>lib_source</td><tdstyle="text-align: left">Label with source code to build. Typically a filegroup for the source of remote repository. Mandatory.</td><tdstyle="text-align: left"><ahref="https://bazel.build/concepts/labels">Label</a></td><tdstyle="text-align: left">required</td><tdstyle="text-align: left"></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-linkopts"></a>linkopts</td><tdstyle="text-align: left">Optional link options to be passed up to the dependencies of this library</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-out_bin_dir"></a>out_bin_dir</td><tdstyle="text-align: left">Optional name of the output subdirectory with the binary files, defaults to 'bin'.</td><tdstyle="text-align: left">String</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>"bin"</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-out_binaries"></a>out_binaries</td><tdstyle="text-align: left">Optional names of the resulting binaries.</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-out_data_dirs"></a>out_data_dirs</td><tdstyle="text-align: left">Optional names of additional directories created by the build that should be declared as bazel action outputs</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-out_headers_only"></a>out_headers_only</td><tdstyle="text-align: left">Flag variable to indicate that the library produces only headers</td><tdstyle="text-align: left">Boolean</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>False</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-out_include_dir"></a>out_include_dir</td><tdstyle="text-align: left">Optional name of the output subdirectory with the header files, defaults to 'include'.</td><tdstyle="text-align: left">String</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>"include"</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-out_interface_libs"></a>out_interface_libs</td><tdstyle="text-align: left">Optional names of the resulting interface libraries.</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-out_lib_dir"></a>out_lib_dir</td><tdstyle="text-align: left">Optional name of the output subdirectory with the library files, defaults to 'lib'.</td><tdstyle="text-align: left">String</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>"lib"</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-out_shared_libs"></a>out_shared_libs</td><tdstyle="text-align: left">Optional names of the resulting shared libraries.</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-out_static_libs"></a>out_static_libs</td><tdstyle="text-align: left">Optional names of the resulting static libraries. Note that if <code>out_headers_only</code>, <code>out_static_libs</code>, <code>out_shared_libs</code>, and <code>out_binaries</code> are not set, default <code>lib_name.a</code>/<code>lib_name.lib</code> static library is assumed</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-postfix_script"></a>postfix_script</td><tdstyle="text-align: left">Optional part of the shell script to be added after the make commands</td><tdstyle="text-align: left">String</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>""</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-targets"></a>targets</td><tdstyle="text-align: left">A list of targets with in the foreign build system to produce. An empty string (<code>""</code>) will result in a call to the underlying build system with no explicit target set</td><tdstyle="text-align: left">List of strings</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-tool_prefix"></a>tool_prefix</td><tdstyle="text-align: left">A prefix for build commands</td><tdstyle="text-align: left">String</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>""</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-tools_deps"></a>tools_deps</td><tdstyle="text-align: left"><strong>deprecated</strong>: Please use the <code>build_data</code> attribute.</td><tdstyle="text-align: left"><ahref="https://bazel.build/concepts/labels">List of labels</a></td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>[]</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake-working_directory"></a>working_directory</td><tdstyle="text-align: left">Working directory, with the main CMakeLists.txt (otherwise, the top directory of the lib_source label files is used.)</td><tdstyle="text-align: left">String</td><tdstyle="text-align: left">optional</td><tdstyle="text-align: left"><code>""</code></td></tr>
<tr><tdstyle="text-align: left"><aid="cmake_variant-toolchain"></a>toolchain</td><tdstyle="text-align: left">The desired make variant toolchain to use, e.g. @rules_foreign_cc//toolchains:preinstalled_nmake_toolchain</td><tdstyle="text-align: left">none</td></tr>