.\" Man page generated from reStructuredText. . .TH "CMAKE-COMMANDS" "7" "August 09, 2019" "3.15.2" "CMake" .SH NAME cmake-commands \- CMake Language Command Reference . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .SH SCRIPTING COMMANDS .sp These commands are always available. .SS break .sp Break from an enclosing foreach or while loop. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C break() .ft P .fi .UNINDENT .UNINDENT .sp Breaks from an enclosing \fBforeach()\fP or \fBwhile()\fP loop. .sp See also the \fBcontinue()\fP command. .SS cmake_host_system_information .sp Query host system specific information. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_host_system_information(RESULT <variable> QUERY <key> ...) .ft P .fi .UNINDENT .UNINDENT .sp Queries system information of the host system on which cmake runs. One or more \fB<key>\fP can be provided to select the information to be queried. The list of queried values is stored in \fB<variable>\fP\&. .sp \fB<key>\fP can be one of the following values: .TS center; |l|l|. _ T{ Key T} T{ Description T} _ T{ \fBNUMBER_OF_LOGICAL_CORES\fP T} T{ Number of logical cores T} _ T{ \fBNUMBER_OF_PHYSICAL_CORES\fP T} T{ Number of physical cores T} _ T{ \fBHOSTNAME\fP T} T{ Hostname T} _ T{ \fBFQDN\fP T} T{ Fully qualified domain name T} _ T{ \fBTOTAL_VIRTUAL_MEMORY\fP T} T{ Total virtual memory in MiB [1] T} _ T{ \fBAVAILABLE_VIRTUAL_MEMORY\fP T} T{ Available virtual memory in MiB [1] T} _ T{ \fBTOTAL_PHYSICAL_MEMORY\fP T} T{ Total physical memory in MiB [1] T} _ T{ \fBAVAILABLE_PHYSICAL_MEMORY\fP T} T{ Available physical memory in MiB [1] T} _ T{ \fBIS_64BIT\fP T} T{ One if processor is 64Bit T} _ T{ \fBHAS_FPU\fP T} T{ One if processor has floating point unit T} _ T{ \fBHAS_MMX\fP T} T{ One if processor supports MMX instructions T} _ T{ \fBHAS_MMX_PLUS\fP T} T{ One if processor supports Ext. MMX instructions T} _ T{ \fBHAS_SSE\fP T} T{ One if processor supports SSE instructions T} _ T{ \fBHAS_SSE2\fP T} T{ One if processor supports SSE2 instructions T} _ T{ \fBHAS_SSE_FP\fP T} T{ One if processor supports SSE FP instructions T} _ T{ \fBHAS_SSE_MMX\fP T} T{ One if processor supports SSE MMX instructions T} _ T{ \fBHAS_AMD_3DNOW\fP T} T{ One if processor supports 3DNow instructions T} _ T{ \fBHAS_AMD_3DNOW_PLUS\fP T} T{ One if processor supports 3DNow+ instructions T} _ T{ \fBHAS_IA64\fP T} T{ One if IA64 processor emulating x86 T} _ T{ \fBHAS_SERIAL_NUMBER\fP T} T{ One if processor has serial number T} _ T{ \fBPROCESSOR_SERIAL_NUMBER\fP T} T{ Processor serial number T} _ T{ \fBPROCESSOR_NAME\fP T} T{ Human readable processor name T} _ T{ \fBPROCESSOR_DESCRIPTION\fP T} T{ Human readable full processor description T} _ T{ \fBOS_NAME\fP T} T{ See \fBCMAKE_HOST_SYSTEM_NAME\fP T} _ T{ \fBOS_RELEASE\fP T} T{ The OS sub\-type e.g. on Windows \fBProfessional\fP T} _ T{ \fBOS_VERSION\fP T} T{ The OS build ID T} _ T{ \fBOS_PLATFORM\fP T} T{ See \fBCMAKE_HOST_SYSTEM_PROCESSOR\fP T} _ .TE .SH FOOTNOTES .IP [1] 5 One MiB (mebibyte) is equal to 1024x1024 bytes. .SS cmake_minimum_required .sp Require a minimum version of cmake. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_minimum_required(VERSION <min>[...<max>] [FATAL_ERROR]) .ft P .fi .UNINDENT .UNINDENT .sp Sets the minimum required version of cmake for a project. Also updates the policy settings as explained below. .sp \fB<min>\fP and the optional \fB<max>\fP are each CMake versions of the form \fBmajor.minor[.patch[.tweak]]\fP, and the \fB\&...\fP is literal. .sp If the running version of CMake is lower than the \fB<min>\fP required version it will stop processing the project and report an error. The optional \fB<max>\fP version, if specified, must be at least the \fB<min>\fP version and affects policy settings as described below. If the running version of CMake is older than 3.12, the extra \fB\&...\fP dots will be seen as version component separators, resulting in the \fB\&...<max>\fP part being ignored and preserving the pre\-3.12 behavior of basing policies on \fB<min>\fP\&. .sp The \fBFATAL_ERROR\fP option is accepted but ignored by CMake 2.6 and higher. It should be specified so CMake versions 2.4 and lower fail with an error instead of just a warning. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 Call the \fBcmake_minimum_required()\fP command at the beginning of the top\-level \fBCMakeLists.txt\fP file even before calling the \fBproject()\fP command. It is important to establish version and policy settings before invoking other commands whose behavior they may affect. See also policy \fBCMP0000\fP\&. .sp Calling \fBcmake_minimum_required()\fP inside a \fBfunction()\fP limits some effects to the function scope when invoked. Such calls should not be made with the intention of having global effects. .UNINDENT .UNINDENT .SS Policy Settings .sp The \fBcmake_minimum_required(VERSION)\fP command implicitly invokes the \fBcmake_policy(VERSION)\fP command to specify that the current project code is written for the given range of CMake versions. All policies known to the running version of CMake and introduced in the \fB<min>\fP (or \fB<max>\fP, if specified) version or earlier will be set to use \fBNEW\fP behavior. All policies introduced in later versions will be unset. This effectively requests behavior preferred as of a given CMake version and tells newer CMake versions to warn about their new policies. .sp When a \fB<min>\fP version higher than 2.4 is specified the command implicitly invokes .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_policy(VERSION <min>[...<max>]) .ft P .fi .UNINDENT .UNINDENT .sp which sets CMake policies based on the range of versions specified. When a \fB<min>\fP version 2.4 or lower is given the command implicitly invokes .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_policy(VERSION 2.4[...<max>]) .ft P .fi .UNINDENT .UNINDENT .sp which enables compatibility features for CMake 2.4 and lower. .SS cmake_parse_arguments .sp Parse function or macro arguments. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_parse_arguments(<prefix> <options> <one_value_keywords> <multi_value_keywords> <args>...) cmake_parse_arguments(PARSE_ARGV <N> <prefix> <options> <one_value_keywords> <multi_value_keywords>) .ft P .fi .UNINDENT .UNINDENT .sp This command is for use in macros or functions. It processes the arguments given to that macro or function, and defines a set of variables which hold the values of the respective options. .sp The first signature reads processes arguments passed in the \fB<args>...\fP\&. This may be used in either a \fBmacro()\fP or a \fBfunction()\fP\&. .sp The \fBPARSE_ARGV\fP signature is only for use in a \fBfunction()\fP body. In this case the arguments that are parsed come from the \fBARGV#\fP variables of the calling function. The parsing starts with the \fB<N>\fP\-th argument, where \fB<N>\fP is an unsigned integer. This allows for the values to have special characters like \fB;\fP in them. .sp The \fB<options>\fP argument contains all options for the respective macro, i.e. keywords which can be used when calling the macro without any value following, like e.g. the \fBOPTIONAL\fP keyword of the \fBinstall()\fP command. .sp The \fB<one_value_keywords>\fP argument contains all keywords for this macro which are followed by one value, like e.g. \fBDESTINATION\fP keyword of the \fBinstall()\fP command. .sp The \fB<multi_value_keywords>\fP argument contains all keywords for this macro which can be followed by more than one value, like e.g. the \fBTARGETS\fP or \fBFILES\fP keywords of the \fBinstall()\fP command. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 All keywords shall be unique. I.e. every keyword shall only be specified once in either \fB<options>\fP, \fB<one_value_keywords>\fP or \fB<multi_value_keywords>\fP\&. A warning will be emitted if uniqueness is violated. .UNINDENT .UNINDENT .sp When done, \fBcmake_parse_arguments\fP will consider for each of the keywords listed in \fB<options>\fP, \fB<one_value_keywords>\fP and \fB<multi_value_keywords>\fP a variable composed of the given \fB<prefix>\fP followed by \fB"_"\fP and the name of the respective keyword. These variables will then hold the respective value from the argument list or be undefined if the associated option could not be found. For the \fB<options>\fP keywords, these will always be defined, to \fBTRUE\fP or \fBFALSE\fP, whether the option is in the argument list or not. .sp All remaining arguments are collected in a variable \fB<prefix>_UNPARSED_ARGUMENTS\fP that will be undefined if all arguments were recognized. This can be checked afterwards to see whether your macro was called with unrecognized parameters. .sp \fB<one_value_keywords>\fP and \fB<multi_value_keywords>\fP that were given no values at all are collected in a variable \fB<prefix>_KEYWORDS_MISSING_VALUES\fP that will be undefined if all keywords received values. This can be checked to see if there were keywords without any values given. .sp Consider the following example macro, \fBmy_install()\fP, which takes similar arguments to the real \fBinstall()\fP command: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C macro(my_install) set(options OPTIONAL FAST) set(oneValueArgs DESTINATION RENAME) set(multiValueArgs TARGETS CONFIGURATIONS) cmake_parse_arguments(MY_INSTALL "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} ) # ... .ft P .fi .UNINDENT .UNINDENT .sp Assume \fBmy_install()\fP has been called like this: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C my_install(TARGETS foo bar DESTINATION bin OPTIONAL blub CONFIGURATIONS) .ft P .fi .UNINDENT .UNINDENT .sp After the \fBcmake_parse_arguments\fP call the macro will have set or undefined the following variables: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C MY_INSTALL_OPTIONAL = TRUE MY_INSTALL_FAST = FALSE # was not used in call to my_install MY_INSTALL_DESTINATION = "bin" MY_INSTALL_RENAME <UNDEFINED> # was not used MY_INSTALL_TARGETS = "foo;bar" MY_INSTALL_CONFIGURATIONS <UNDEFINED> # was not used MY_INSTALL_UNPARSED_ARGUMENTS = "blub" # nothing expected after "OPTIONAL" MY_INSTALL_KEYWORDS_MISSING_VALUES = "CONFIGURATIONS" # No value for "CONFIGURATIONS" given .ft P .fi .UNINDENT .UNINDENT .sp You can then continue and process these variables. .sp Keywords terminate lists of values, e.g. if directly after a \fBone_value_keyword\fP another recognized keyword follows, this is interpreted as the beginning of the new option. E.g. \fBmy_install(TARGETS foo DESTINATION OPTIONAL)\fP would result in \fBMY_INSTALL_DESTINATION\fP set to \fB"OPTIONAL"\fP, but as \fBOPTIONAL\fP is a keyword itself \fBMY_INSTALL_DESTINATION\fP will be empty (but added to \fBMY_INSTALL_KEYWORDS_MISSING_VALUES\fP) and \fBMY_INSTALL_OPTIONAL\fP will therefore be set to \fBTRUE\fP\&. .SS cmake_policy .sp Manage CMake Policy settings. See the \fBcmake\-policies(7)\fP manual for defined policies. .sp As CMake evolves it is sometimes necessary to change existing behavior in order to fix bugs or improve implementations of existing features. The CMake Policy mechanism is designed to help keep existing projects building as new versions of CMake introduce changes in behavior. Each new policy (behavioral change) is given an identifier of the form \fBCMP<NNNN>\fP where \fB<NNNN>\fP is an integer index. Documentation associated with each policy describes the \fBOLD\fP and \fBNEW\fP behavior and the reason the policy was introduced. Projects may set each policy to select the desired behavior. When CMake needs to know which behavior to use it checks for a setting specified by the project. If no setting is available the \fBOLD\fP behavior is assumed and a warning is produced requesting that the policy be set. .SS Setting Policies by CMake Version .sp The \fBcmake_policy\fP command is used to set policies to \fBOLD\fP or \fBNEW\fP behavior. While setting policies individually is supported, we encourage projects to set policies based on CMake versions: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_policy(VERSION <min>[...<max>]) .ft P .fi .UNINDENT .UNINDENT .sp \fB<min>\fP and the optional \fB<max>\fP are each CMake versions of the form \fBmajor.minor[.patch[.tweak]]\fP, and the \fB\&...\fP is literal. The \fB<min>\fP version must be at least \fB2.4\fP and at most the running version of CMake. The \fB<max>\fP version, if specified, must be at least the \fB<min>\fP version but may exceed the running version of CMake. If the running version of CMake is older than 3.12, the extra \fB\&...\fP dots will be seen as version component separators, resulting in the \fB\&...<max>\fP part being ignored and preserving the pre\-3.12 behavior of basing policies on \fB<min>\fP\&. .sp This specifies that the current CMake code is written for the given range of CMake versions. All policies known to the running version of CMake and introduced in the \fB<min>\fP (or \fB<max>\fP, if specified) version or earlier will be set to use \fBNEW\fP behavior. All policies introduced in later versions will be unset (unless the \fBCMAKE_POLICY_DEFAULT_CMP<NNNN>\fP variable sets a default). This effectively requests behavior preferred as of a given CMake version and tells newer CMake versions to warn about their new policies. .sp Note that the \fBcmake_minimum_required(VERSION)\fP command implicitly calls \fBcmake_policy(VERSION)\fP too. .SS Setting Policies Explicitly .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_policy(SET CMP<NNNN> NEW) cmake_policy(SET CMP<NNNN> OLD) .ft P .fi .UNINDENT .UNINDENT .sp Tell CMake to use the \fBOLD\fP or \fBNEW\fP behavior for a given policy. Projects depending on the old behavior of a given policy may silence a policy warning by setting the policy state to \fBOLD\fP\&. Alternatively one may fix the project to work with the new behavior and set the policy state to \fBNEW\fP\&. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 The \fBOLD\fP behavior of a policy is \fBdeprecated by definition\fP and may be removed in a future version of CMake. .UNINDENT .UNINDENT .SS Checking Policy Settings .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_policy(GET CMP<NNNN> <variable>) .ft P .fi .UNINDENT .UNINDENT .sp Check whether a given policy is set to \fBOLD\fP or \fBNEW\fP behavior. The output \fB<variable>\fP value will be \fBOLD\fP or \fBNEW\fP if the policy is set, and empty otherwise. .SS CMake Policy Stack .sp CMake keeps policy settings on a stack, so changes made by the \fBcmake_policy\fP command affect only the top of the stack. A new entry on the policy stack is managed automatically for each subdirectory to protect its parents and siblings. CMake also manages a new entry for scripts loaded by \fBinclude()\fP and \fBfind_package()\fP commands except when invoked with the \fBNO_POLICY_SCOPE\fP option (see also policy \fBCMP0011\fP). The \fBcmake_policy\fP command provides an interface to manage custom entries on the policy stack: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_policy(PUSH) cmake_policy(POP) .ft P .fi .UNINDENT .UNINDENT .sp Each \fBPUSH\fP must have a matching \fBPOP\fP to erase any changes. This is useful to make temporary changes to policy settings. Calls to the \fBcmake_minimum_required(VERSION)\fP, \fBcmake_policy(VERSION)\fP, or \fBcmake_policy(SET)\fP commands influence only the current top of the policy stack. .sp Commands created by the \fBfunction()\fP and \fBmacro()\fP commands record policy settings when they are created and use the pre\-record policies when they are invoked. If the function or macro implementation sets policies, the changes automatically propagate up through callers until they reach the closest nested policy stack entry. .SS configure_file .sp Copy a file to another location and modify its contents. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C configure_file(<input> <output> [COPYONLY] [ESCAPE_QUOTES] [@ONLY] [NEWLINE_STYLE [UNIX|DOS|WIN32|LF|CRLF] ]) .ft P .fi .UNINDENT .UNINDENT .sp Copies an \fB<input>\fP file to an \fB<output>\fP file and substitutes variable values referenced as \fB@VAR@\fP or \fB${VAR}\fP in the input file content. Each variable reference will be replaced with the current value of the variable, or the empty string if the variable is not defined. Furthermore, input lines of the form .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C #cmakedefine VAR ... .ft P .fi .UNINDENT .UNINDENT .sp will be replaced with either .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C #define VAR ... .ft P .fi .UNINDENT .UNINDENT .sp or .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C /* #undef VAR */ .ft P .fi .UNINDENT .UNINDENT .sp depending on whether \fBVAR\fP is set in CMake to any value not considered a false constant by the \fBif()\fP command. The "..." content on the line after the variable name, if any, is processed as above. Input file lines of the form \fB#cmakedefine01 VAR\fP will be replaced with either \fB#define VAR 1\fP or \fB#define VAR 0\fP similarly. The result lines (with the exception of the \fB#undef\fP comments) can be indented using spaces and/or tabs between the \fB#\fP character and the \fBcmakedefine\fP or \fBcmakedefine01\fP words. This whitespace indentation will be preserved in the output lines: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # cmakedefine VAR # cmakedefine01 VAR .ft P .fi .UNINDENT .UNINDENT .sp will be replaced, if \fBVAR\fP is defined, with .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # define VAR # define VAR 1 .ft P .fi .UNINDENT .UNINDENT .sp If the input file is modified the build system will re\-run CMake to re\-configure the file and generate the build system again. The generated file is modified and its timestamp updated on subsequent cmake runs only if its content is changed. .sp The arguments are: .INDENT 0.0 .TP .B \fB<input>\fP Path to the input file. A relative path is treated with respect to the value of \fBCMAKE_CURRENT_SOURCE_DIR\fP\&. The input path must be a file, not a directory. .TP .B \fB<output>\fP Path to the output file or directory. A relative path is treated with respect to the value of \fBCMAKE_CURRENT_BINARY_DIR\fP\&. If the path names an existing directory the output file is placed in that directory with the same file name as the input file. .TP .B \fBCOPYONLY\fP Copy the file without replacing any variable references or other content. This option may not be used with \fBNEWLINE_STYLE\fP\&. .TP .B \fBESCAPE_QUOTES\fP Escape any substituted quotes with backslashes (C\-style). .TP .B \fB@ONLY\fP Restrict variable replacement to references of the form \fB@VAR@\fP\&. This is useful for configuring scripts that use \fB${VAR}\fP syntax. .TP .B \fBNEWLINE_STYLE <style>\fP Specify the newline style for the output file. Specify \fBUNIX\fP or \fBLF\fP for \fB\en\fP newlines, or specify \fBDOS\fP, \fBWIN32\fP, or \fBCRLF\fP for \fB\er\en\fP newlines. This option may not be used with \fBCOPYONLY\fP\&. .UNINDENT .SS Example .sp Consider a source tree containing a \fBfoo.h.in\fP file: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C #cmakedefine FOO_ENABLE #cmakedefine FOO_STRING "@FOO_STRING@" .ft P .fi .UNINDENT .UNINDENT .sp An adjacent \fBCMakeLists.txt\fP may use \fBconfigure_file\fP to configure the header: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C option(FOO_ENABLE "Enable Foo" ON) if(FOO_ENABLE) set(FOO_STRING "foo") endif() configure_file(foo.h.in foo.h @ONLY) .ft P .fi .UNINDENT .UNINDENT .sp This creates a \fBfoo.h\fP in the build directory corresponding to this source directory. If the \fBFOO_ENABLE\fP option is on, the configured file will contain: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C #define FOO_ENABLE #define FOO_STRING "foo" .ft P .fi .UNINDENT .UNINDENT .sp Otherwise it will contain: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C /* #undef FOO_ENABLE */ /* #undef FOO_STRING */ .ft P .fi .UNINDENT .UNINDENT .sp One may then use the \fBinclude_directories()\fP command to specify the output directory as an include directory: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C include_directories(${CMAKE_CURRENT_BINARY_DIR}) .ft P .fi .UNINDENT .UNINDENT .sp so that sources may include the header as \fB#include <foo.h>\fP\&. .SS continue .sp Continue to the top of enclosing foreach or while loop. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C continue() .ft P .fi .UNINDENT .UNINDENT .sp The \fBcontinue\fP command allows a cmake script to abort the rest of a block in a \fBforeach()\fP or \fBwhile()\fP loop, and start at the top of the next iteration. .sp See also the \fBbreak()\fP command. .SS else .sp Starts the else portion of an if block. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C else([<condition>]) .ft P .fi .UNINDENT .UNINDENT .sp See the \fBif()\fP command. .SS elseif .sp Starts an elseif portion of an if block. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C elseif(<condition>) .ft P .fi .UNINDENT .UNINDENT .sp See the \fBif()\fP command, especially for the syntax and logic of the \fB<condition>\fP\&. .SS endforeach .sp Ends a list of commands in a foreach block. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C endforeach([<loop_var>]) .ft P .fi .UNINDENT .UNINDENT .sp See the \fBforeach()\fP command. .sp The optional \fB<loop_var>\fP argument is supported for backward compatibility only. If used it must be a verbatim repeat of the \fB<loop_var>\fP argument of the opening \fBforeach\fP clause. .SS endfunction .sp Ends a list of commands in a function block. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C endfunction([<name>]) .ft P .fi .UNINDENT .UNINDENT .sp See the \fBfunction()\fP command. .sp The optional \fB<name>\fP argument is supported for backward compatibility only. If used it must be a verbatim repeat of the \fB<name>\fP argument of the opening \fBfunction\fP command. .SS endif .sp Ends a list of commands in an if block. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C endif([<condition>]) .ft P .fi .UNINDENT .UNINDENT .sp See the \fBif()\fP command. .sp The optional \fB<condition>\fP argument is supported for backward compatibility only. If used it must be a verbatim repeat of the argument of the opening \fBif\fP clause. .SS endmacro .sp Ends a list of commands in a macro block. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C endmacro([<name>]) .ft P .fi .UNINDENT .UNINDENT .sp See the \fBmacro()\fP command. .sp The optional \fB<name>\fP argument is supported for backward compatibility only. If used it must be a verbatim repeat of the \fB<name>\fP argument of the opening \fBmacro\fP command. .SS endwhile .sp Ends a list of commands in a while block. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C endwhile([<condition>]) .ft P .fi .UNINDENT .UNINDENT .sp See the \fBwhile()\fP command. .sp The optional \fB<condition>\fP argument is supported for backward compatibility only. If used it must be a verbatim repeat of the argument of the opening \fBwhile\fP clause. .SS execute_process .sp Execute one or more child processes. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C execute_process(COMMAND <cmd1> [<arguments>] [COMMAND <cmd2> [<arguments>]]... [WORKING_DIRECTORY <directory>] [TIMEOUT <seconds>] [RESULT_VARIABLE <variable>] [RESULTS_VARIABLE <variable>] [OUTPUT_VARIABLE <variable>] [ERROR_VARIABLE <variable>] [INPUT_FILE <file>] [OUTPUT_FILE <file>] [ERROR_FILE <file>] [OUTPUT_QUIET] [ERROR_QUIET] [COMMAND_ECHO <where>] [OUTPUT_STRIP_TRAILING_WHITESPACE] [ERROR_STRIP_TRAILING_WHITESPACE] [ENCODING <name>]) .ft P .fi .UNINDENT .UNINDENT .sp Runs the given sequence of one or more commands. .sp Commands are executed concurrently as a pipeline, with the standard output of each process piped to the standard input of the next. A single standard error pipe is used for all processes. .sp Options: .INDENT 0.0 .TP .B \fBCOMMAND\fP A child process command line. .sp CMake executes the child process using operating system APIs directly. All arguments are passed VERBATIM to the child process. No intermediate shell is used, so shell operators such as \fB>\fP are treated as normal arguments. (Use the \fBINPUT_*\fP, \fBOUTPUT_*\fP, and \fBERROR_*\fP options to redirect stdin, stdout, and stderr.) .sp If a sequential execution of multiple commands is required, use multiple \fBexecute_process()\fP calls with a single \fBCOMMAND\fP argument. .TP .B \fBWORKING_DIRECTORY\fP The named directory will be set as the current working directory of the child processes. .TP .B \fBTIMEOUT\fP After the specified number of seconds (fractions allowed), all unfinished child processes will be terminated, and the \fBRESULT_VARIABLE\fP will be set to a string mentioning the "timeout". .TP .B \fBRESULT_VARIABLE\fP The variable will be set to contain the result of last child process. This will be an integer return code from the last child or a string describing an error condition. .TP .B \fBRESULTS_VARIABLE <variable>\fP The variable will be set to contain the result of all processes as a \fIsemicolon\-separated list\fP, in order of the given \fBCOMMAND\fP arguments. Each entry will be an integer return code from the corresponding child or a string describing an error condition. .TP .B \fBOUTPUT_VARIABLE\fP, \fBERROR_VARIABLE\fP The variable named will be set with the contents of the standard output and standard error pipes, respectively. If the same variable is named for both pipes their output will be merged in the order produced. .TP .B \fBINPUT_FILE, OUTPUT_FILE\fP, \fBERROR_FILE\fP The file named will be attached to the standard input of the first process, standard output of the last process, or standard error of all processes, respectively. If the same file is named for both output and error then it will be used for both. .TP .B \fBOUTPUT_QUIET\fP, \fBERROR_QUIET\fP The standard output or standard error results will be quietly ignored. .TP .B \fBCOMMAND_ECHO <where>\fP The command being run will be echo\(aqed to \fB<where>\fP with \fB<where>\fP being set to one of \fBSTDERR\fP, \fBSTDOUT\fP or \fBNONE\fP\&. See the \fBCMAKE_EXECUTE_PROCESS_COMMAND_ECHO\fP variable for a way to control the default behavior when this option is not present. .TP .B \fBENCODING <name>\fP On Windows, the encoding that is used to decode output from the process. Ignored on other platforms. Valid encoding names are: .INDENT 7.0 .TP .B \fBNONE\fP Perform no decoding. This assumes that the process output is encoded in the same way as CMake\(aqs internal encoding (UTF\-8). This is the default. .TP .B \fBAUTO\fP Use the current active console\(aqs codepage or if that isn\(aqt available then use ANSI. .TP .B \fBANSI\fP Use the ANSI codepage. .TP .B \fBOEM\fP Use the original equipment manufacturer (OEM) code page. .TP .B \fBUTF8\fP or \fBUTF\-8\fP Use the UTF\-8 codepage. Prior to CMake 3.11.0, only \fBUTF8\fP was accepted for this encoding. In CMake 3.11.0, \fBUTF\-8\fP was added for consistency with the \fI\%UTF-8 RFC\fP naming convention. .UNINDENT .UNINDENT .sp If more than one \fBOUTPUT_*\fP or \fBERROR_*\fP option is given for the same pipe the precedence is not specified. If no \fBOUTPUT_*\fP or \fBERROR_*\fP options are given the output will be shared with the corresponding pipes of the CMake process itself. .sp The \fBexecute_process()\fP command is a newer more powerful version of \fBexec_program()\fP, but the old command has been kept for compatibility. Both commands run while CMake is processing the project prior to build system generation. Use \fBadd_custom_target()\fP and \fBadd_custom_command()\fP to create custom commands that run at build time. .SS file .sp File manipulation command. .SS Synopsis .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C \fI\%Reading\fP file(\fI\%READ\fP <filename> <out\-var> [...]) file(\fI\%STRINGS\fP <filename> <out\-var> [...]) file(\fI\%<HASH>\fP <filename> <out\-var>) file(\fI\%TIMESTAMP\fP <filename> <out\-var> [...]) \fI\%Writing\fP file({\fI\%WRITE\fP | \fI\%APPEND\fP} <filename> <content>...) file({\fI\%TOUCH\fP | \fI\%TOUCH_NOCREATE\fP} [<file>...]) file(\fI\%GENERATE\fP OUTPUT <output\-file> [...]) \fI\%Filesystem\fP file({\fI\%GLOB\fP | \fI\%GLOB_RECURSE\fP} <out\-var> [...] [<globbing\-expr>...]) file(\fI\%RENAME\fP <oldname> <newname>) file({\fI\%REMOVE\fP | \fI\%REMOVE_RECURSE\fP } [<files>...]) file(\fI\%MAKE_DIRECTORY\fP [<dir>...]) file({\fI\%COPY\fP | \fI\%INSTALL\fP} <file>... DESTINATION <dir> [...]) file(\fI\%SIZE\fP <filename> <out\-var>) file(\fI\%READ_SYMLINK\fP <linkname> <out\-var>) file(\fI\%CREATE_LINK\fP <original> <linkname> [...]) \fI\%Path Conversion\fP file(\fI\%RELATIVE_PATH\fP <out\-var> <directory> <file>) file({\fI\%TO_CMAKE_PATH\fP | \fI\%TO_NATIVE_PATH\fP} <path> <out\-var>) \fI\%Transfer\fP file(\fI\%DOWNLOAD\fP <url> <file> [...]) file(\fI\%UPLOAD\fP <file> <url> [...]) \fI\%Locking\fP file(\fI\%LOCK\fP <path> [...]) .ft P .fi .UNINDENT .UNINDENT .SS Reading .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(READ <filename> <variable> [OFFSET <offset>] [LIMIT <max\-in>] [HEX]) .ft P .fi .UNINDENT .UNINDENT .sp Read content from a file called \fB<filename>\fP and store it in a \fB<variable>\fP\&. Optionally start from the given \fB<offset>\fP and read at most \fB<max\-in>\fP bytes. The \fBHEX\fP option causes data to be converted to a hexadecimal representation (useful for binary data). .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(STRINGS <filename> <variable> [<options>...]) .ft P .fi .UNINDENT .UNINDENT .sp Parse a list of ASCII strings from \fB<filename>\fP and store it in \fB<variable>\fP\&. Binary data in the file are ignored. Carriage return (\fB\er\fP, CR) characters are ignored. The options are: .INDENT 0.0 .TP .B \fBLENGTH_MAXIMUM <max\-len>\fP Consider only strings of at most a given length. .TP .B \fBLENGTH_MINIMUM <min\-len>\fP Consider only strings of at least a given length. .TP .B \fBLIMIT_COUNT <max\-num>\fP Limit the number of distinct strings to be extracted. .TP .B \fBLIMIT_INPUT <max\-in>\fP Limit the number of input bytes to read from the file. .TP .B \fBLIMIT_OUTPUT <max\-out>\fP Limit the number of total bytes to store in the \fB<variable>\fP\&. .TP .B \fBNEWLINE_CONSUME\fP Treat newline characters (\fB\en\fP, LF) as part of string content instead of terminating at them. .TP .B \fBNO_HEX_CONVERSION\fP Intel Hex and Motorola S\-record files are automatically converted to binary while reading unless this option is given. .TP .B \fBREGEX <regex>\fP Consider only strings that match the given regular expression. .TP .B \fBENCODING <encoding\-type>\fP Consider strings of a given encoding. Currently supported encodings are: UTF\-8, UTF\-16LE, UTF\-16BE, UTF\-32LE, UTF\-32BE. If the ENCODING option is not provided and the file has a Byte Order Mark, the ENCODING option will be defaulted to respect the Byte Order Mark. .UNINDENT .sp For example, the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(STRINGS myfile.txt myfile) .ft P .fi .UNINDENT .UNINDENT .sp stores a list in the variable \fBmyfile\fP in which each item is a line from the input file. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(<HASH> <filename> <variable>) .ft P .fi .UNINDENT .UNINDENT .sp Compute a cryptographic hash of the content of \fB<filename>\fP and store it in a \fB<variable>\fP\&. The supported \fB<HASH>\fP algorithm names are those listed by the \fIstring(<HASH>)\fP command. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(TIMESTAMP <filename> <variable> [<format>] [UTC]) .ft P .fi .UNINDENT .UNINDENT .sp Compute a string representation of the modification time of \fB<filename>\fP and store it in \fB<variable>\fP\&. Should the command be unable to obtain a timestamp variable will be set to the empty string (""). .sp See the \fBstring(TIMESTAMP)\fP command for documentation of the \fB<format>\fP and \fBUTC\fP options. .SS Writing .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(WRITE <filename> <content>...) file(APPEND <filename> <content>...) .ft P .fi .UNINDENT .UNINDENT .sp Write \fB<content>\fP into a file called \fB<filename>\fP\&. If the file does not exist, it will be created. If the file already exists, \fBWRITE\fP mode will overwrite it and \fBAPPEND\fP mode will append to the end. Any directories in the path specified by \fB<filename>\fP that do not exist will be created. .sp If the file is a build input, use the \fBconfigure_file()\fP command to update the file only when its content changes. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(TOUCH [<files>...]) file(TOUCH_NOCREATE [<files>...]) .ft P .fi .UNINDENT .UNINDENT .sp Create a file with no content if it does not yet exist. If the file already exists, its access and/or modification will be updated to the time when the function call is executed. .sp Use TOUCH_NOCREATE to touch a file if it exists but not create it. If a file does not exist it will be silently ignored. .sp With TOUCH and TOUCH_NOCREATE the contents of an existing file will not be modified. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(GENERATE OUTPUT output\-file <INPUT input\-file|CONTENT content> [CONDITION expression]) .ft P .fi .UNINDENT .UNINDENT .sp Generate an output file for each build configuration supported by the current \fBCMake Generator\fP\&. Evaluate \fBgenerator expressions\fP from the input content to produce the output content. The options are: .INDENT 0.0 .TP .B \fBCONDITION <condition>\fP Generate the output file for a particular configuration only if the condition is true. The condition must be either \fB0\fP or \fB1\fP after evaluating generator expressions. .TP .B \fBCONTENT <content>\fP Use the content given explicitly as input. .TP .B \fBINPUT <input\-file>\fP Use the content from a given file as input. A relative path is treated with respect to the value of \fBCMAKE_CURRENT_SOURCE_DIR\fP\&. See policy \fBCMP0070\fP\&. .TP .B \fBOUTPUT <output\-file>\fP Specify the output file name to generate. Use generator expressions such as \fB$<CONFIG>\fP to specify a configuration\-specific output file name. Multiple configurations may generate the same output file only if the generated content is identical. Otherwise, the \fB<output\-file>\fP must evaluate to an unique name for each configuration. A relative path (after evaluating generator expressions) is treated with respect to the value of \fBCMAKE_CURRENT_BINARY_DIR\fP\&. See policy \fBCMP0070\fP\&. .UNINDENT .sp Exactly one \fBCONTENT\fP or \fBINPUT\fP option must be given. A specific \fBOUTPUT\fP file may be named by at most one invocation of \fBfile(GENERATE)\fP\&. Generated files are modified and their timestamp updated on subsequent cmake runs only if their content is changed. .sp Note also that \fBfile(GENERATE)\fP does not create the output file until the generation phase. The output file will not yet have been written when the \fBfile(GENERATE)\fP command returns, it is written only after processing all of a project\(aqs \fBCMakeLists.txt\fP files. .SS Filesystem .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(GLOB <variable> [LIST_DIRECTORIES true|false] [RELATIVE <path>] [CONFIGURE_DEPENDS] [<globbing\-expressions>...]) file(GLOB_RECURSE <variable> [FOLLOW_SYMLINKS] [LIST_DIRECTORIES true|false] [RELATIVE <path>] [CONFIGURE_DEPENDS] [<globbing\-expressions>...]) .ft P .fi .UNINDENT .UNINDENT .sp Generate a list of files that match the \fB<globbing\-expressions>\fP and store it into the \fB<variable>\fP\&. Globbing expressions are similar to regular expressions, but much simpler. If \fBRELATIVE\fP flag is specified, the results will be returned as relative paths to the given path. The results will be ordered lexicographically. .sp If the \fBCONFIGURE_DEPENDS\fP flag is specified, CMake will add logic to the main build system check target to rerun the flagged \fBGLOB\fP commands at build time. If any of the outputs change, CMake will regenerate the build system. .sp By default \fBGLOB\fP lists directories \- directories are omitted in result if \fBLIST_DIRECTORIES\fP is set to false. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 We do not recommend using GLOB to collect a list of source files from your source tree. If no CMakeLists.txt file changes when a source is added or removed then the generated build system cannot know when to ask CMake to regenerate. The \fBCONFIGURE_DEPENDS\fP flag may not work reliably on all generators, or if a new generator is added in the future that cannot support it, projects using it will be stuck. Even if \fBCONFIGURE_DEPENDS\fP works reliably, there is still a cost to perform the check on every rebuild. .UNINDENT .UNINDENT .sp Examples of globbing expressions include: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C *.cxx \- match all files with extension cxx *.vt? \- match all files with extension vta,...,vtz f[3\-5].txt \- match files f3.txt, f4.txt, f5.txt .ft P .fi .UNINDENT .UNINDENT .sp The \fBGLOB_RECURSE\fP mode will traverse all the subdirectories of the matched directory and match the files. Subdirectories that are symlinks are only traversed if \fBFOLLOW_SYMLINKS\fP is given or policy \fBCMP0009\fP is not set to \fBNEW\fP\&. .sp By default \fBGLOB_RECURSE\fP omits directories from result list \- setting \fBLIST_DIRECTORIES\fP to true adds directories to result list. If \fBFOLLOW_SYMLINKS\fP is given or policy \fBCMP0009\fP is not set to \fBOLD\fP then \fBLIST_DIRECTORIES\fP treats symlinks as directories. .sp Examples of recursive globbing include: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C /dir/*.py \- match all python files in /dir and subdirectories .ft P .fi .UNINDENT .UNINDENT .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(RENAME <oldname> <newname>) .ft P .fi .UNINDENT .UNINDENT .sp Move a file or directory within a filesystem from \fB<oldname>\fP to \fB<newname>\fP, replacing the destination atomically. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(REMOVE [<files>...]) file(REMOVE_RECURSE [<files>...]) .ft P .fi .UNINDENT .UNINDENT .sp Remove the given files. The \fBREMOVE_RECURSE\fP mode will remove the given files and directories, also non\-empty directories. No error is emitted if a given file does not exist. Relative input paths are evaluated with respect to the current source directory. Empty input paths are ignored with a warning. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(MAKE_DIRECTORY [<directories>...]) .ft P .fi .UNINDENT .UNINDENT .sp Create the given directories and their parents as needed. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(<COPY|INSTALL> <files>... DESTINATION <dir> [FILE_PERMISSIONS <permissions>...] [DIRECTORY_PERMISSIONS <permissions>...] [NO_SOURCE_PERMISSIONS] [USE_SOURCE_PERMISSIONS] [FOLLOW_SYMLINK_CHAIN] [FILES_MATCHING] [[PATTERN <pattern> | REGEX <regex>] [EXCLUDE] [PERMISSIONS <permissions>...]] [...]) .ft P .fi .UNINDENT .UNINDENT .sp The \fBCOPY\fP signature copies files, directories, and symlinks to a destination folder. Relative input paths are evaluated with respect to the current source directory, and a relative destination is evaluated with respect to the current build directory. Copying preserves input file timestamps, and optimizes out a file if it exists at the destination with the same timestamp. Copying preserves input permissions unless explicit permissions or \fBNO_SOURCE_PERMISSIONS\fP are given (default is \fBUSE_SOURCE_PERMISSIONS\fP). .sp If \fBFOLLOW_SYMLINK_CHAIN\fP is specified, \fBCOPY\fP will recursively resolve the symlinks at the paths given until a real file is found, and install a corresponding symlink in the destination for each symlink encountered. For each symlink that is installed, the resolution is stripped of the directory, leaving only the filename, meaning that the new symlink points to a file in the same directory as the symlink. This feature is useful on some Unix systems, where libraries are installed as a chain of symlinks with version numbers, with less specific versions pointing to more specific versions. \fBFOLLOW_SYMLINK_CHAIN\fP will install all of these symlinks and the library itself into the destination directory. For example, if you have the following directory structure: .INDENT 0.0 .IP \(bu 2 \fB/opt/foo/lib/libfoo.so.1.2.3\fP .IP \(bu 2 \fB/opt/foo/lib/libfoo.so.1.2 \-> libfoo.so.1.2.3\fP .IP \(bu 2 \fB/opt/foo/lib/libfoo.so.1 \-> libfoo.so.1.2\fP .IP \(bu 2 \fB/opt/foo/lib/libfoo.so \-> libfoo.so.1\fP .UNINDENT .sp and you do: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(COPY /opt/foo/lib/libfoo.so DESTINATION lib FOLLOW_SYMLINK_CHAIN) .ft P .fi .UNINDENT .UNINDENT .sp This will install all of the symlinks and \fBlibfoo.so.1.2.3\fP itself into \fBlib\fP\&. .sp See the \fBinstall(DIRECTORY)\fP command for documentation of permissions, \fBFILES_MATCHING\fP, \fBPATTERN\fP, \fBREGEX\fP, and \fBEXCLUDE\fP options. Copying directories preserves the structure of their content even if options are used to select a subset of files. .sp The \fBINSTALL\fP signature differs slightly from \fBCOPY\fP: it prints status messages (subject to the \fBCMAKE_INSTALL_MESSAGE\fP variable), and \fBNO_SOURCE_PERMISSIONS\fP is default. Installation scripts generated by the \fBinstall()\fP command use this signature (with some undocumented options for internal use). .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(SIZE <filename> <variable>) .ft P .fi .UNINDENT .UNINDENT .sp Determine the file size of the \fB<filename>\fP and put the result in \fB<variable>\fP variable. Requires that \fB<filename>\fP is a valid path pointing to a file and is readable. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(READ_SYMLINK <linkname> <variable>) .ft P .fi .UNINDENT .UNINDENT .sp This subcommand queries the symlink \fB<linkname>\fP and stores the path it points to in the result \fB<variable>\fP\&. If \fB<linkname>\fP does not exist or is not a symlink, CMake issues a fatal error. .sp Note that this command returns the raw symlink path and does not resolve a relative path. The following is an example of how to ensure that an absolute path is obtained: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set(linkname "/path/to/foo.sym") file(READ_SYMLINK "${linkname}" result) if(NOT IS_ABSOLUTE "${result}") get_filename_component(dir "${linkname}" DIRECTORY) set(result "${dir}/${result}") endif() .ft P .fi .UNINDENT .UNINDENT .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(CREATE_LINK <original> <linkname> [RESULT <result>] [COPY_ON_ERROR] [SYMBOLIC]) .ft P .fi .UNINDENT .UNINDENT .sp Create a link \fB<linkname>\fP that points to \fB<original>\fP\&. It will be a hard link by default, but providing the \fBSYMBOLIC\fP option results in a symbolic link instead. Hard links require that \fBoriginal\fP exists and is a file, not a directory. If \fB<linkname>\fP already exists, it will be overwritten. .sp The \fB<result>\fP variable, if specified, receives the status of the operation. It is set to \fB0\fP upon success or an error message otherwise. If \fBRESULT\fP is not specified and the operation fails, a fatal error is emitted. .sp Specifying \fBCOPY_ON_ERROR\fP enables copying the file as a fallback if creating the link fails. It can be useful for handling situations such as \fB<original>\fP and \fB<linkname>\fP being on different drives or mount points, which would make them unable to support a hard link. .SS Path Conversion .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(RELATIVE_PATH <variable> <directory> <file>) .ft P .fi .UNINDENT .UNINDENT .sp Compute the relative path from a \fB<directory>\fP to a \fB<file>\fP and store it in the \fB<variable>\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(TO_CMAKE_PATH "<path>" <variable>) file(TO_NATIVE_PATH "<path>" <variable>) .ft P .fi .UNINDENT .UNINDENT .sp The \fBTO_CMAKE_PATH\fP mode converts a native \fB<path>\fP into a cmake\-style path with forward\-slashes (\fB/\fP). The input can be a single path or a system search path like \fB$ENV{PATH}\fP\&. A search path will be converted to a cmake\-style list separated by \fB;\fP characters. .sp The \fBTO_NATIVE_PATH\fP mode converts a cmake\-style \fB<path>\fP into a native path with platform\-specific slashes (\fB\e\fP on Windows and \fB/\fP elsewhere). .sp Always use double quotes around the \fB<path>\fP to be sure it is treated as a single argument to this command. .SS Transfer .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(DOWNLOAD <url> <file> [<options>...]) file(UPLOAD <file> <url> [<options>...]) .ft P .fi .UNINDENT .UNINDENT .sp The \fBDOWNLOAD\fP mode downloads the given \fB<url>\fP to a local \fB<file>\fP\&. The \fBUPLOAD\fP mode uploads a local \fB<file>\fP to a given \fB<url>\fP\&. .sp Options to both \fBDOWNLOAD\fP and \fBUPLOAD\fP are: .INDENT 0.0 .TP .B \fBINACTIVITY_TIMEOUT <seconds>\fP Terminate the operation after a period of inactivity. .TP .B \fBLOG <variable>\fP Store a human\-readable log of the operation in a variable. .TP .B \fBSHOW_PROGRESS\fP Print progress information as status messages until the operation is complete. .TP .B \fBSTATUS <variable>\fP Store the resulting status of the operation in a variable. The status is a \fB;\fP separated list of length 2. The first element is the numeric return value for the operation, and the second element is a string value for the error. A \fB0\fP numeric error means no error in the operation. .TP .B \fBTIMEOUT <seconds>\fP Terminate the operation after a given total time has elapsed. .TP .B \fBUSERPWD <username>:<password>\fP Set username and password for operation. .TP .B \fBHTTPHEADER <HTTP\-header>\fP HTTP header for operation. Suboption can be repeated several times. .TP .B \fBNETRC <level>\fP Specify whether the .netrc file is to be used for operation. If this option is not specified, the value of the \fBCMAKE_NETRC\fP variable will be used instead. Valid levels are: .INDENT 7.0 .TP .B \fBIGNORED\fP The .netrc file is ignored. This is the default. .TP .B \fBOPTIONAL\fP The .netrc file is optional, and information in the URL is preferred. The file will be scanned to find which ever information is not specified in the URL. .TP .B \fBREQUIRED\fP The .netrc file is required, and information in the URL is ignored. .UNINDENT .TP .B \fBNETRC_FILE <file>\fP Specify an alternative .netrc file to the one in your home directory, if the \fBNETRC\fP level is \fBOPTIONAL\fP or \fBREQUIRED\fP\&. If this option is not specified, the value of the \fBCMAKE_NETRC_FILE\fP variable will be used instead. .UNINDENT .sp If neither \fBNETRC\fP option is given CMake will check variables \fBCMAKE_NETRC\fP and \fBCMAKE_NETRC_FILE\fP, respectively. .sp Additional options to \fBDOWNLOAD\fP are: .sp \fBEXPECTED_HASH ALGO=<value>\fP .INDENT 0.0 .INDENT 3.5 Verify that the downloaded content hash matches the expected value, where \fBALGO\fP is one of the algorithms supported by \fBfile(<HASH>)\fP\&. If it does not match, the operation fails with an error. .UNINDENT .UNINDENT .INDENT 0.0 .TP .B \fBEXPECTED_MD5 <value>\fP Historical short\-hand for \fBEXPECTED_HASH MD5=<value>\fP\&. .TP .B \fBTLS_VERIFY <ON|OFF>\fP Specify whether to verify the server certificate for \fBhttps://\fP URLs. The default is to \fInot\fP verify. .TP .B \fBTLS_CAINFO <file>\fP Specify a custom Certificate Authority file for \fBhttps://\fP URLs. .UNINDENT .sp For \fBhttps://\fP URLs CMake must be built with OpenSSL support. \fBTLS/SSL\fP certificates are not checked by default. Set \fBTLS_VERIFY\fP to \fBON\fP to check certificates and/or use \fBEXPECTED_HASH\fP to verify downloaded content. If neither \fBTLS\fP option is given CMake will check variables \fBCMAKE_TLS_VERIFY\fP and \fBCMAKE_TLS_CAINFO\fP, respectively. .SS Locking .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C file(LOCK <path> [DIRECTORY] [RELEASE] [GUARD <FUNCTION|FILE|PROCESS>] [RESULT_VARIABLE <variable>] [TIMEOUT <seconds>]) .ft P .fi .UNINDENT .UNINDENT .sp Lock a file specified by \fB<path>\fP if no \fBDIRECTORY\fP option present and file \fB<path>/cmake.lock\fP otherwise. File will be locked for scope defined by \fBGUARD\fP option (default value is \fBPROCESS\fP). \fBRELEASE\fP option can be used to unlock file explicitly. If option \fBTIMEOUT\fP is not specified CMake will wait until lock succeed or until fatal error occurs. If \fBTIMEOUT\fP is set to \fB0\fP lock will be tried once and result will be reported immediately. If \fBTIMEOUT\fP is not \fB0\fP CMake will try to lock file for the period specified by \fB<seconds>\fP value. Any errors will be interpreted as fatal if there is no \fBRESULT_VARIABLE\fP option. Otherwise result will be stored in \fB<variable>\fP and will be \fB0\fP on success or error message on failure. .sp Note that lock is advisory \- there is no guarantee that other processes will respect this lock, i.e. lock synchronize two or more CMake instances sharing some modifiable resources. Similar logic applied to \fBDIRECTORY\fP option \- locking parent directory doesn\(aqt prevent other \fBLOCK\fP commands to lock any child directory or file. .sp Trying to lock file twice is not allowed. Any intermediate directories and file itself will be created if they not exist. \fBGUARD\fP and \fBTIMEOUT\fP options ignored on \fBRELEASE\fP operation. .SS find_file .sp A short\-hand signature is: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_file (<VAR> name1 [path1 path2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp The general signature is: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_file ( <VAR> name | NAMES name1 [name2 ...] [HINTS path1 [path2 ... ENV var]] [PATHS path1 [path2 ... ENV var]] [PATH_SUFFIXES suffix1 [suffix2 ...]] [DOC "cache documentation string"] [NO_DEFAULT_PATH] [NO_PACKAGE_ROOT_PATH] [NO_CMAKE_PATH] [NO_CMAKE_ENVIRONMENT_PATH] [NO_SYSTEM_ENVIRONMENT_PATH] [NO_CMAKE_SYSTEM_PATH] [CMAKE_FIND_ROOT_PATH_BOTH | ONLY_CMAKE_FIND_ROOT_PATH | NO_CMAKE_FIND_ROOT_PATH] ) .ft P .fi .UNINDENT .UNINDENT .sp This command is used to find a full path to named file\&. A cache entry named by \fB<VAR>\fP is created to store the result of this command. If the full path to a file is found the result is stored in the variable and the search will not be repeated unless the variable is cleared. If nothing is found, the result will be \fB<VAR>\-NOTFOUND\fP, and the search will be attempted again the next time find_file is invoked with the same variable. .sp Options include: .INDENT 0.0 .TP .B \fBNAMES\fP Specify one or more possible names for the full path to a file\&. .sp When using this to specify names with and without a version suffix, we recommend specifying the unversioned name first so that locally\-built packages can be found before those provided by distributions. .TP .B \fBHINTS\fP, \fBPATHS\fP Specify directories to search in addition to the default locations. The \fBENV var\fP sub\-option reads paths from a system environment variable. .TP .B \fBPATH_SUFFIXES\fP Specify additional subdirectories to check below each directory location otherwise considered. .TP .B \fBDOC\fP Specify the documentation string for the \fB<VAR>\fP cache entry. .UNINDENT .sp If \fBNO_DEFAULT_PATH\fP is specified, then no additional paths are added to the search. If \fBNO_DEFAULT_PATH\fP is not specified, the search process is as follows: .INDENT 0.0 .IP 1. 3 If called from within a find module loaded by \fBfind_package(<PackageName>)\fP, search prefixes unique to the current package being found. Specifically look in the \fB<PackageName>_ROOT\fP CMake variable and the \fB<PackageName>_ROOT\fP environment variable. The package root variables are maintained as a stack so if called from nested find modules, root paths from the parent\(aqs find module will be searched after paths from the current module, i.e. \fB<CurrentPackage>_ROOT\fP, \fBENV{<CurrentPackage>_ROOT}\fP, \fB<ParentPackage>_ROOT\fP, \fBENV{<ParentPackage>_ROOT}\fP, etc. This can be skipped if \fBNO_PACKAGE_ROOT_PATH\fP is passed. See policy \fBCMP0074\fP\&. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/include/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/include\fP for each \fB<prefix>\fP in the \fB<PackageName>_ROOT\fP CMake variable and the \fB<PackageName>_ROOT\fP environment variable if called from within a find module loaded by \fBfind_package(<PackageName>)\fP .UNINDENT .IP 2. 3 Search paths specified in cmake\-specific cache variables. These are intended to be used on the command line with a \fB\-DVAR=value\fP\&. The values are interpreted as \fIsemicolon\-separated lists\fP\&. This can be skipped if \fBNO_CMAKE_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/include/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/include\fP for each \fB<prefix>\fP in \fBCMAKE_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_INCLUDE_PATH\fP .IP \(bu 2 \fBCMAKE_FRAMEWORK_PATH\fP .UNINDENT .IP 3. 3 Search paths specified in cmake\-specific environment variables. These are intended to be set in the user\(aqs shell configuration, and therefore use the host\(aqs native path separator (\fB;\fP on Windows and \fB:\fP on UNIX). This can be skipped if \fBNO_CMAKE_ENVIRONMENT_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/include/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/include\fP for each \fB<prefix>\fP in \fBCMAKE_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_INCLUDE_PATH\fP .IP \(bu 2 \fBCMAKE_FRAMEWORK_PATH\fP .UNINDENT .IP 4. 3 Search the paths specified by the \fBHINTS\fP option. These should be paths computed by system introspection, such as a hint provided by the location of another item already found. Hard\-coded guesses should be specified with the \fBPATHS\fP option. .IP 5. 3 Search the standard system environment variables. This can be skipped if \fBNO_SYSTEM_ENVIRONMENT_PATH\fP is an argument. .INDENT 3.0 .IP \(bu 2 Directories in \fBINCLUDE\fP\&. On Windows hosts: \fB<prefix>/include/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/include\fP for each \fB<prefix>/[s]bin\fP in \fBPATH\fP, and \fB<entry>/include\fP for other entries in \fBPATH\fP, and the directories in \fBPATH\fP itself. .UNINDENT .IP 6. 3 Search cmake variables defined in the Platform files for the current system. This can be skipped if \fBNO_CMAKE_SYSTEM_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/include/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/include\fP for each \fB<prefix>\fP in \fBCMAKE_SYSTEM_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_SYSTEM_INCLUDE_PATH\fP .IP \(bu 2 \fBCMAKE_SYSTEM_FRAMEWORK_PATH\fP .UNINDENT .IP 7. 3 Search the paths specified by the PATHS option or in the short\-hand version of the command. These are typically hard\-coded guesses. .UNINDENT .sp On macOS the \fBCMAKE_FIND_FRAMEWORK\fP and \fBCMAKE_FIND_APPBUNDLE\fP variables determine the order of preference between Apple\-style and unix\-style package components. .sp The CMake variable \fBCMAKE_FIND_ROOT_PATH\fP specifies one or more directories to be prepended to all other search directories. This effectively "re\-roots" the entire search under given locations. Paths which are descendants of the \fBCMAKE_STAGING_PREFIX\fP are excluded from this re\-rooting, because that variable is always a path on the host system. By default the \fBCMAKE_FIND_ROOT_PATH\fP is empty. .sp The \fBCMAKE_SYSROOT\fP variable can also be used to specify exactly one directory to use as a prefix. Setting \fBCMAKE_SYSROOT\fP also has other effects. See the documentation for that variable for more. .sp These variables are especially useful when cross\-compiling to point to the root directory of the target environment and CMake will search there too. By default at first the directories listed in \fBCMAKE_FIND_ROOT_PATH\fP are searched, then the \fBCMAKE_SYSROOT\fP directory is searched, and then the non\-rooted directories will be searched. The default behavior can be adjusted by setting \fBCMAKE_FIND_ROOT_PATH_MODE_INCLUDE\fP\&. This behavior can be manually overridden on a per\-call basis using options: .INDENT 0.0 .TP .B \fBCMAKE_FIND_ROOT_PATH_BOTH\fP Search in the order described above. .TP .B \fBNO_CMAKE_FIND_ROOT_PATH\fP Do not use the \fBCMAKE_FIND_ROOT_PATH\fP variable. .TP .B \fBONLY_CMAKE_FIND_ROOT_PATH\fP Search only the re\-rooted directories and directories below \fBCMAKE_STAGING_PREFIX\fP\&. .UNINDENT .sp The default search order is designed to be most\-specific to least\-specific for common use cases. Projects may override the order by simply calling the command multiple times and using the \fBNO_*\fP options: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_file (<VAR> NAMES name PATHS paths... NO_DEFAULT_PATH) find_file (<VAR> NAMES name) .ft P .fi .UNINDENT .UNINDENT .sp Once one of the calls succeeds the result variable will be set and stored in the cache so that no call will search again. .SS find_library .sp A short\-hand signature is: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_library (<VAR> name1 [path1 path2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp The general signature is: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_library ( <VAR> name | NAMES name1 [name2 ...] [NAMES_PER_DIR] [HINTS path1 [path2 ... ENV var]] [PATHS path1 [path2 ... ENV var]] [PATH_SUFFIXES suffix1 [suffix2 ...]] [DOC "cache documentation string"] [NO_DEFAULT_PATH] [NO_PACKAGE_ROOT_PATH] [NO_CMAKE_PATH] [NO_CMAKE_ENVIRONMENT_PATH] [NO_SYSTEM_ENVIRONMENT_PATH] [NO_CMAKE_SYSTEM_PATH] [CMAKE_FIND_ROOT_PATH_BOTH | ONLY_CMAKE_FIND_ROOT_PATH | NO_CMAKE_FIND_ROOT_PATH] ) .ft P .fi .UNINDENT .UNINDENT .sp This command is used to find a library\&. A cache entry named by \fB<VAR>\fP is created to store the result of this command. If the library is found the result is stored in the variable and the search will not be repeated unless the variable is cleared. If nothing is found, the result will be \fB<VAR>\-NOTFOUND\fP, and the search will be attempted again the next time find_library is invoked with the same variable. .sp Options include: .INDENT 0.0 .TP .B \fBNAMES\fP Specify one or more possible names for the library\&. .sp When using this to specify names with and without a version suffix, we recommend specifying the unversioned name first so that locally\-built packages can be found before those provided by distributions. .TP .B \fBHINTS\fP, \fBPATHS\fP Specify directories to search in addition to the default locations. The \fBENV var\fP sub\-option reads paths from a system environment variable. .TP .B \fBPATH_SUFFIXES\fP Specify additional subdirectories to check below each directory location otherwise considered. .TP .B \fBDOC\fP Specify the documentation string for the \fB<VAR>\fP cache entry. .UNINDENT .sp If \fBNO_DEFAULT_PATH\fP is specified, then no additional paths are added to the search. If \fBNO_DEFAULT_PATH\fP is not specified, the search process is as follows: .INDENT 0.0 .IP 1. 3 If called from within a find module loaded by \fBfind_package(<PackageName>)\fP, search prefixes unique to the current package being found. Specifically look in the \fB<PackageName>_ROOT\fP CMake variable and the \fB<PackageName>_ROOT\fP environment variable. The package root variables are maintained as a stack so if called from nested find modules, root paths from the parent\(aqs find module will be searched after paths from the current module, i.e. \fB<CurrentPackage>_ROOT\fP, \fBENV{<CurrentPackage>_ROOT}\fP, \fB<ParentPackage>_ROOT\fP, \fBENV{<ParentPackage>_ROOT}\fP, etc. This can be skipped if \fBNO_PACKAGE_ROOT_PATH\fP is passed. See policy \fBCMP0074\fP\&. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/lib/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/lib\fP for each \fB<prefix>\fP in the \fB<PackageName>_ROOT\fP CMake variable and the \fB<PackageName>_ROOT\fP environment variable if called from within a find module loaded by \fBfind_package(<PackageName>)\fP .UNINDENT .IP 2. 3 Search paths specified in cmake\-specific cache variables. These are intended to be used on the command line with a \fB\-DVAR=value\fP\&. The values are interpreted as \fIsemicolon\-separated lists\fP\&. This can be skipped if \fBNO_CMAKE_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/lib/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/lib\fP for each \fB<prefix>\fP in \fBCMAKE_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_LIBRARY_PATH\fP .IP \(bu 2 \fBCMAKE_FRAMEWORK_PATH\fP .UNINDENT .IP 3. 3 Search paths specified in cmake\-specific environment variables. These are intended to be set in the user\(aqs shell configuration, and therefore use the host\(aqs native path separator (\fB;\fP on Windows and \fB:\fP on UNIX). This can be skipped if \fBNO_CMAKE_ENVIRONMENT_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/lib/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/lib\fP for each \fB<prefix>\fP in \fBCMAKE_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_LIBRARY_PATH\fP .IP \(bu 2 \fBCMAKE_FRAMEWORK_PATH\fP .UNINDENT .IP 4. 3 Search the paths specified by the \fBHINTS\fP option. These should be paths computed by system introspection, such as a hint provided by the location of another item already found. Hard\-coded guesses should be specified with the \fBPATHS\fP option. .IP 5. 3 Search the standard system environment variables. This can be skipped if \fBNO_SYSTEM_ENVIRONMENT_PATH\fP is an argument. .INDENT 3.0 .IP \(bu 2 Directories in \fBLIB\fP\&. On Windows hosts: \fB<prefix>/lib/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/lib\fP for each \fB<prefix>/[s]bin\fP in \fBPATH\fP, and \fB<entry>/lib\fP for other entries in \fBPATH\fP, and the directories in \fBPATH\fP itself. .UNINDENT .IP 6. 3 Search cmake variables defined in the Platform files for the current system. This can be skipped if \fBNO_CMAKE_SYSTEM_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/lib/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/lib\fP for each \fB<prefix>\fP in \fBCMAKE_SYSTEM_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_SYSTEM_LIBRARY_PATH\fP .IP \(bu 2 \fBCMAKE_SYSTEM_FRAMEWORK_PATH\fP .UNINDENT .IP 7. 3 Search the paths specified by the PATHS option or in the short\-hand version of the command. These are typically hard\-coded guesses. .UNINDENT .sp On macOS the \fBCMAKE_FIND_FRAMEWORK\fP and \fBCMAKE_FIND_APPBUNDLE\fP variables determine the order of preference between Apple\-style and unix\-style package components. .sp The CMake variable \fBCMAKE_FIND_ROOT_PATH\fP specifies one or more directories to be prepended to all other search directories. This effectively "re\-roots" the entire search under given locations. Paths which are descendants of the \fBCMAKE_STAGING_PREFIX\fP are excluded from this re\-rooting, because that variable is always a path on the host system. By default the \fBCMAKE_FIND_ROOT_PATH\fP is empty. .sp The \fBCMAKE_SYSROOT\fP variable can also be used to specify exactly one directory to use as a prefix. Setting \fBCMAKE_SYSROOT\fP also has other effects. See the documentation for that variable for more. .sp These variables are especially useful when cross\-compiling to point to the root directory of the target environment and CMake will search there too. By default at first the directories listed in \fBCMAKE_FIND_ROOT_PATH\fP are searched, then the \fBCMAKE_SYSROOT\fP directory is searched, and then the non\-rooted directories will be searched. The default behavior can be adjusted by setting \fBCMAKE_FIND_ROOT_PATH_MODE_LIBRARY\fP\&. This behavior can be manually overridden on a per\-call basis using options: .INDENT 0.0 .TP .B \fBCMAKE_FIND_ROOT_PATH_BOTH\fP Search in the order described above. .TP .B \fBNO_CMAKE_FIND_ROOT_PATH\fP Do not use the \fBCMAKE_FIND_ROOT_PATH\fP variable. .TP .B \fBONLY_CMAKE_FIND_ROOT_PATH\fP Search only the re\-rooted directories and directories below \fBCMAKE_STAGING_PREFIX\fP\&. .UNINDENT .sp The default search order is designed to be most\-specific to least\-specific for common use cases. Projects may override the order by simply calling the command multiple times and using the \fBNO_*\fP options: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_library (<VAR> NAMES name PATHS paths... NO_DEFAULT_PATH) find_library (<VAR> NAMES name) .ft P .fi .UNINDENT .UNINDENT .sp Once one of the calls succeeds the result variable will be set and stored in the cache so that no call will search again. .sp When more than one value is given to the \fBNAMES\fP option this command by default will consider one name at a time and search every directory for it. The \fBNAMES_PER_DIR\fP option tells this command to consider one directory at a time and search for all names in it. .sp Each library name given to the \fBNAMES\fP option is first considered as a library file name and then considered with platform\-specific prefixes (e.g. \fBlib\fP) and suffixes (e.g. \fB\&.so\fP). Therefore one may specify library file names such as \fBlibfoo.a\fP directly. This can be used to locate static libraries on UNIX\-like systems. .sp If the library found is a framework, then \fB<VAR>\fP will be set to the full path to the framework \fB<fullPath>/A.framework\fP\&. When a full path to a framework is used as a library, CMake will use a \fB\-framework A\fP, and a \fB\-F<fullPath>\fP to link the framework to the target. .sp If the \fBCMAKE_FIND_LIBRARY_CUSTOM_LIB_SUFFIX\fP variable is set all search paths will be tested as normal, with the suffix appended, and with all matches of \fBlib/\fP replaced with \fBlib${CMAKE_FIND_LIBRARY_CUSTOM_LIB_SUFFIX}/\fP\&. This variable overrides the \fBFIND_LIBRARY_USE_LIB32_PATHS\fP, \fBFIND_LIBRARY_USE_LIBX32_PATHS\fP, and \fBFIND_LIBRARY_USE_LIB64_PATHS\fP global properties. .sp If the \fBFIND_LIBRARY_USE_LIB32_PATHS\fP global property is set all search paths will be tested as normal, with \fB32/\fP appended, and with all matches of \fBlib/\fP replaced with \fBlib32/\fP\&. This property is automatically set for the platforms that are known to need it if at least one of the languages supported by the \fBproject()\fP command is enabled. .sp If the \fBFIND_LIBRARY_USE_LIBX32_PATHS\fP global property is set all search paths will be tested as normal, with \fBx32/\fP appended, and with all matches of \fBlib/\fP replaced with \fBlibx32/\fP\&. This property is automatically set for the platforms that are known to need it if at least one of the languages supported by the \fBproject()\fP command is enabled. .sp If the \fBFIND_LIBRARY_USE_LIB64_PATHS\fP global property is set all search paths will be tested as normal, with \fB64/\fP appended, and with all matches of \fBlib/\fP replaced with \fBlib64/\fP\&. This property is automatically set for the platforms that are known to need it if at least one of the languages supported by the \fBproject()\fP command is enabled. .SS find_package .sp Find an external project, and load its settings. .SS Basic Signature and Module Mode .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_package(<PackageName> [version] [EXACT] [QUIET] [MODULE] [REQUIRED] [[COMPONENTS] [components...]] [OPTIONAL_COMPONENTS components...] [NO_POLICY_SCOPE]) .ft P .fi .UNINDENT .UNINDENT .sp Finds and loads settings from an external project. \fB<PackageName>_FOUND\fP will be set to indicate whether the package was found. When the package is found package\-specific information is provided through variables and \fIImported Targets\fP documented by the package itself. The \fBQUIET\fP option disables informational messages, including those indicating that the package cannot be found if it is not \fBREQUIRED\fP\&. The \fBREQUIRED\fP option stops processing with an error message if the package cannot be found. .sp A package\-specific list of required components may be listed after the \fBCOMPONENTS\fP option (or after the \fBREQUIRED\fP option if present). Additional optional components may be listed after \fBOPTIONAL_COMPONENTS\fP\&. Available components and their influence on whether a package is considered to be found are defined by the target package. .sp The \fB[version]\fP argument requests a version with which the package found should be compatible (format is \fBmajor[.minor[.patch[.tweak]]]\fP). The \fBEXACT\fP option requests that the version be matched exactly. If no \fB[version]\fP and/or component list is given to a recursive invocation inside a find\-module, the corresponding arguments are forwarded automatically from the outer call (including the \fBEXACT\fP flag for \fB[version]\fP). Version support is currently provided only on a package\-by\-package basis (see the \fI\%Version Selection\fP section below). .sp See the \fBcmake_policy()\fP command documentation for discussion of the \fBNO_POLICY_SCOPE\fP option. .sp The command has two modes by which it searches for packages: "Module" mode and "Config" mode. The above signature selects Module mode. If no module is found the command falls back to Config mode, described below. This fall back is disabled if the \fBMODULE\fP option is given. .sp In Module mode, CMake searches for a file called \fBFind<PackageName>.cmake\fP\&. The file is first searched in the \fBCMAKE_MODULE_PATH\fP, then among the \fIFind Modules\fP provided by the CMake installation. If the file is found, it is read and processed by CMake. It is responsible for finding the package, checking the version, and producing any needed messages. Some find\-modules provide limited or no support for versioning; check the module documentation. .sp If the \fBMODULE\fP option is not specified in the above signature, CMake first searches for the package using Module mode. Then, if the package is not found, it searches again using Config mode. A user may set the variable \fBCMAKE_FIND_PACKAGE_PREFER_CONFIG\fP to \fBTRUE\fP to direct CMake first search using Config mode before falling back to Module mode. .SS Full Signature and Config Mode .sp User code should generally look for packages using the above \fI\%basic signature\fP\&. The remainder of this command documentation specifies the full command signature and details of the search process. Project maintainers wishing to provide a package to be found by this command are encouraged to read on. .sp The complete Config mode command signature is .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_package(<PackageName> [version] [EXACT] [QUIET] [REQUIRED] [[COMPONENTS] [components...]] [CONFIG|NO_MODULE] [NO_POLICY_SCOPE] [NAMES name1 [name2 ...]] [CONFIGS config1 [config2 ...]] [HINTS path1 [path2 ... ]] [PATHS path1 [path2 ... ]] [PATH_SUFFIXES suffix1 [suffix2 ...]] [NO_DEFAULT_PATH] [NO_PACKAGE_ROOT_PATH] [NO_CMAKE_PATH] [NO_CMAKE_ENVIRONMENT_PATH] [NO_SYSTEM_ENVIRONMENT_PATH] [NO_CMAKE_PACKAGE_REGISTRY] [NO_CMAKE_BUILDS_PATH] # Deprecated; does nothing. [NO_CMAKE_SYSTEM_PATH] [NO_CMAKE_SYSTEM_PACKAGE_REGISTRY] [CMAKE_FIND_ROOT_PATH_BOTH | ONLY_CMAKE_FIND_ROOT_PATH | NO_CMAKE_FIND_ROOT_PATH]) .ft P .fi .UNINDENT .UNINDENT .sp The \fBCONFIG\fP option, the synonymous \fBNO_MODULE\fP option, or the use of options not specified in the \fI\%basic signature\fP all enforce pure Config mode. In pure Config mode, the command skips Module mode search and proceeds at once with Config mode search. .sp Config mode search attempts to locate a configuration file provided by the package to be found. A cache entry called \fB<PackageName>_DIR\fP is created to hold the directory containing the file. By default the command searches for a package with the name \fB<PackageName>\fP\&. If the \fBNAMES\fP option is given the names following it are used instead of \fB<PackageName>\fP\&. The command searches for a file called \fB<PackageName>Config.cmake\fP or \fB<lower\-case\-package\-name>\-config.cmake\fP for each name specified. A replacement set of possible configuration file names may be given using the \fBCONFIGS\fP option. The search procedure is specified below. Once found, the configuration file is read and processed by CMake. Since the file is provided by the package it already knows the location of package contents. The full path to the configuration file is stored in the cmake variable \fB<PackageName>_CONFIG\fP\&. .sp All configuration files which have been considered by CMake while searching for an installation of the package with an appropriate version are stored in the cmake variable \fB<PackageName>_CONSIDERED_CONFIGS\fP, the associated versions in \fB<PackageName>_CONSIDERED_VERSIONS\fP\&. .sp If the package configuration file cannot be found CMake will generate an error describing the problem unless the \fBQUIET\fP argument is specified. If \fBREQUIRED\fP is specified and the package is not found a fatal error is generated and the configure step stops executing. If \fB<PackageName>_DIR\fP has been set to a directory not containing a configuration file CMake will ignore it and search from scratch. .sp Package maintainers providing CMake package configuration files are encouraged to name and install them such that the \fI\%Search Procedure\fP outlined below will find them without requiring use of additional options. .SS Version Selection .sp When the \fB[version]\fP argument is given Config mode will only find a version of the package that claims compatibility with the requested version (format is \fBmajor[.minor[.patch[.tweak]]]\fP). If the \fBEXACT\fP option is given only a version of the package claiming an exact match of the requested version may be found. CMake does not establish any convention for the meaning of version numbers. Package version numbers are checked by "version" files provided by the packages themselves. For a candidate package configuration file \fB<config\-file>.cmake\fP the corresponding version file is located next to it and named either \fB<config\-file>\-version.cmake\fP or \fB<config\-file>Version.cmake\fP\&. If no such version file is available then the configuration file is assumed to not be compatible with any requested version. A basic version file containing generic version matching code can be created using the \fBCMakePackageConfigHelpers\fP module. When a version file is found it is loaded to check the requested version number. The version file is loaded in a nested scope in which the following variables have been defined: .INDENT 0.0 .TP .B \fBPACKAGE_FIND_NAME\fP the \fB<PackageName>\fP .TP .B \fBPACKAGE_FIND_VERSION\fP full requested version string .TP .B \fBPACKAGE_FIND_VERSION_MAJOR\fP major version if requested, else 0 .TP .B \fBPACKAGE_FIND_VERSION_MINOR\fP minor version if requested, else 0 .TP .B \fBPACKAGE_FIND_VERSION_PATCH\fP patch version if requested, else 0 .TP .B \fBPACKAGE_FIND_VERSION_TWEAK\fP tweak version if requested, else 0 .TP .B \fBPACKAGE_FIND_VERSION_COUNT\fP number of version components, 0 to 4 .UNINDENT .sp The version file checks whether it satisfies the requested version and sets these variables: .INDENT 0.0 .TP .B \fBPACKAGE_VERSION\fP full provided version string .TP .B \fBPACKAGE_VERSION_EXACT\fP true if version is exact match .TP .B \fBPACKAGE_VERSION_COMPATIBLE\fP true if version is compatible .TP .B \fBPACKAGE_VERSION_UNSUITABLE\fP true if unsuitable as any version .UNINDENT .sp These variables are checked by the \fBfind_package\fP command to determine whether the configuration file provides an acceptable version. They are not available after the \fBfind_package\fP call returns. If the version is acceptable the following variables are set: .INDENT 0.0 .TP .B \fB<PackageName>_VERSION\fP full provided version string .TP .B \fB<PackageName>_VERSION_MAJOR\fP major version if provided, else 0 .TP .B \fB<PackageName>_VERSION_MINOR\fP minor version if provided, else 0 .TP .B \fB<PackageName>_VERSION_PATCH\fP patch version if provided, else 0 .TP .B \fB<PackageName>_VERSION_TWEAK\fP tweak version if provided, else 0 .TP .B \fB<PackageName>_VERSION_COUNT\fP number of version components, 0 to 4 .UNINDENT .sp and the corresponding package configuration file is loaded. When multiple package configuration files are available whose version files claim compatibility with the version requested it is unspecified which one is chosen: unless the variable \fBCMAKE_FIND_PACKAGE_SORT_ORDER\fP is set no attempt is made to choose a highest or closest version number. .sp To control the order in which \fBfind_package\fP checks for compatibility use the two variables \fBCMAKE_FIND_PACKAGE_SORT_ORDER\fP and \fBCMAKE_FIND_PACKAGE_SORT_DIRECTION\fP\&. For instance in order to select the highest version one can set .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C SET(CMAKE_FIND_PACKAGE_SORT_ORDER NATURAL) SET(CMAKE_FIND_PACKAGE_SORT_DIRECTION DEC) .ft P .fi .UNINDENT .UNINDENT .sp before calling \fBfind_package\fP\&. .SS Search Procedure .sp CMake constructs a set of possible installation prefixes for the package. Under each prefix several directories are searched for a configuration file. The tables below show the directories searched. Each entry is meant for installation trees following Windows (\fBW\fP), UNIX (\fBU\fP), or Apple (\fBA\fP) conventions: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C <prefix>/ (W) <prefix>/(cmake|CMake)/ (W) <prefix>/<name>*/ (W) <prefix>/<name>*/(cmake|CMake)/ (W) <prefix>/(lib/<arch>|lib*|share)/cmake/<name>*/ (U) <prefix>/(lib/<arch>|lib*|share)/<name>*/ (U) <prefix>/(lib/<arch>|lib*|share)/<name>*/(cmake|CMake)/ (U) <prefix>/<name>*/(lib/<arch>|lib*|share)/cmake/<name>*/ (W/U) <prefix>/<name>*/(lib/<arch>|lib*|share)/<name>*/ (W/U) <prefix>/<name>*/(lib/<arch>|lib*|share)/<name>*/(cmake|CMake)/ (W/U) .ft P .fi .UNINDENT .UNINDENT .sp On systems supporting macOS \fBFRAMEWORK\fP and \fBBUNDLE\fP, the following directories are searched for Frameworks or Application Bundles containing a configuration file: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C <prefix>/<name>.framework/Resources/ (A) <prefix>/<name>.framework/Resources/CMake/ (A) <prefix>/<name>.framework/Versions/*/Resources/ (A) <prefix>/<name>.framework/Versions/*/Resources/CMake/ (A) <prefix>/<name>.app/Contents/Resources/ (A) <prefix>/<name>.app/Contents/Resources/CMake/ (A) .ft P .fi .UNINDENT .UNINDENT .sp In all cases the \fB<name>\fP is treated as case\-insensitive and corresponds to any of the names specified (\fB<PackageName>\fP or names given by \fBNAMES\fP). .sp Paths with \fBlib/<arch>\fP are enabled if the \fBCMAKE_LIBRARY_ARCHITECTURE\fP variable is set. \fBlib*\fP includes one or more of the values \fBlib64\fP, \fBlib32\fP, \fBlibx32\fP or \fBlib\fP (searched in that order). .INDENT 0.0 .IP \(bu 2 Paths with \fBlib64\fP are searched on 64 bit platforms if the \fBFIND_LIBRARY_USE_LIB64_PATHS\fP property is set to \fBTRUE\fP\&. .IP \(bu 2 Paths with \fBlib32\fP are searched on 32 bit platforms if the \fBFIND_LIBRARY_USE_LIB32_PATHS\fP property is set to \fBTRUE\fP\&. .IP \(bu 2 Paths with \fBlibx32\fP are searched on platforms using the x32 ABI if the \fBFIND_LIBRARY_USE_LIBX32_PATHS\fP property is set to \fBTRUE\fP\&. .IP \(bu 2 The \fBlib\fP path is always searched. .UNINDENT .sp If \fBPATH_SUFFIXES\fP is specified, the suffixes are appended to each (\fBW\fP) or (\fBU\fP) directory entry one\-by\-one. .sp This set of directories is intended to work in cooperation with projects that provide configuration files in their installation trees. Directories above marked with (\fBW\fP) are intended for installations on Windows where the prefix may point at the top of an application\(aqs installation directory. Those marked with (\fBU\fP) are intended for installations on UNIX platforms where the prefix is shared by multiple packages. This is merely a convention, so all (\fBW\fP) and (\fBU\fP) directories are still searched on all platforms. Directories marked with (\fBA\fP) are intended for installations on Apple platforms. The \fBCMAKE_FIND_FRAMEWORK\fP and \fBCMAKE_FIND_APPBUNDLE\fP variables determine the order of preference. .sp The set of installation prefixes is constructed using the following steps. If \fBNO_DEFAULT_PATH\fP is specified all \fBNO_*\fP options are enabled. .INDENT 0.0 .IP 1. 3 Search paths specified in the \fB<PackageName>_ROOT\fP CMake variable and the \fB<PackageName>_ROOT\fP environment variable, where \fB<PackageName>\fP is the package to be found. The package root variables are maintained as a stack so if called from within a find module, root paths from the parent\(aqs find module will also be searched after paths for the current package. This can be skipped if \fBNO_PACKAGE_ROOT_PATH\fP is passed. See policy \fBCMP0074\fP\&. .IP 2. 3 Search paths specified in cmake\-specific cache variables. These are intended to be used on the command line with a \fB\-DVAR=value\fP\&. The values are interpreted as \fIsemicolon\-separated lists\fP\&. This can be skipped if \fBNO_CMAKE_PATH\fP is passed: .INDENT 3.0 .INDENT 3.5 .sp .nf .ft C CMAKE_PREFIX_PATH CMAKE_FRAMEWORK_PATH CMAKE_APPBUNDLE_PATH .ft P .fi .UNINDENT .UNINDENT .IP 3. 3 Search paths specified in cmake\-specific environment variables. These are intended to be set in the user\(aqs shell configuration, and therefore use the host\(aqs native path separator (\fB;\fP on Windows and \fB:\fP on UNIX). This can be skipped if \fBNO_CMAKE_ENVIRONMENT_PATH\fP is passed: .INDENT 3.0 .INDENT 3.5 .sp .nf .ft C <PackageName>_DIR CMAKE_PREFIX_PATH CMAKE_FRAMEWORK_PATH CMAKE_APPBUNDLE_PATH .ft P .fi .UNINDENT .UNINDENT .IP 4. 3 Search paths specified by the \fBHINTS\fP option. These should be paths computed by system introspection, such as a hint provided by the location of another item already found. Hard\-coded guesses should be specified with the \fBPATHS\fP option. .IP 5. 3 Search the standard system environment variables. This can be skipped if \fBNO_SYSTEM_ENVIRONMENT_PATH\fP is passed. Path entries ending in \fB/bin\fP or \fB/sbin\fP are automatically converted to their parent directories: .INDENT 3.0 .INDENT 3.5 .sp .nf .ft C PATH .ft P .fi .UNINDENT .UNINDENT .IP 6. 3 Search paths stored in the CMake \fIUser Package Registry\fP\&. This can be skipped if \fBNO_CMAKE_PACKAGE_REGISTRY\fP is passed or by setting the \fBCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY\fP to \fBTRUE\fP\&. See the \fBcmake\-packages(7)\fP manual for details on the user package registry. .IP 7. 3 Search cmake variables defined in the Platform files for the current system. This can be skipped if \fBNO_CMAKE_SYSTEM_PATH\fP is passed: .INDENT 3.0 .INDENT 3.5 .sp .nf .ft C CMAKE_SYSTEM_PREFIX_PATH CMAKE_SYSTEM_FRAMEWORK_PATH CMAKE_SYSTEM_APPBUNDLE_PATH .ft P .fi .UNINDENT .UNINDENT .IP 8. 3 Search paths stored in the CMake \fISystem Package Registry\fP\&. This can be skipped if \fBNO_CMAKE_SYSTEM_PACKAGE_REGISTRY\fP is passed or by setting the \fBCMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY\fP to \fBTRUE\fP\&. See the \fBcmake\-packages(7)\fP manual for details on the system package registry. .IP 9. 3 Search paths specified by the \fBPATHS\fP option. These are typically hard\-coded guesses. .UNINDENT .sp The CMake variable \fBCMAKE_FIND_ROOT_PATH\fP specifies one or more directories to be prepended to all other search directories. This effectively "re\-roots" the entire search under given locations. Paths which are descendants of the \fBCMAKE_STAGING_PREFIX\fP are excluded from this re\-rooting, because that variable is always a path on the host system. By default the \fBCMAKE_FIND_ROOT_PATH\fP is empty. .sp The \fBCMAKE_SYSROOT\fP variable can also be used to specify exactly one directory to use as a prefix. Setting \fBCMAKE_SYSROOT\fP also has other effects. See the documentation for that variable for more. .sp These variables are especially useful when cross\-compiling to point to the root directory of the target environment and CMake will search there too. By default at first the directories listed in \fBCMAKE_FIND_ROOT_PATH\fP are searched, then the \fBCMAKE_SYSROOT\fP directory is searched, and then the non\-rooted directories will be searched. The default behavior can be adjusted by setting \fBCMAKE_FIND_ROOT_PATH_MODE_PACKAGE\fP\&. This behavior can be manually overridden on a per\-call basis using options: .INDENT 0.0 .TP .B \fBCMAKE_FIND_ROOT_PATH_BOTH\fP Search in the order described above. .TP .B \fBNO_CMAKE_FIND_ROOT_PATH\fP Do not use the \fBCMAKE_FIND_ROOT_PATH\fP variable. .TP .B \fBONLY_CMAKE_FIND_ROOT_PATH\fP Search only the re\-rooted directories and directories below \fBCMAKE_STAGING_PREFIX\fP\&. .UNINDENT .sp The default search order is designed to be most\-specific to least\-specific for common use cases. Projects may override the order by simply calling the command multiple times and using the \fBNO_*\fP options: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_package (<PackageName> PATHS paths... NO_DEFAULT_PATH) find_package (<PackageName>) .ft P .fi .UNINDENT .UNINDENT .sp Once one of the calls succeeds the result variable will be set and stored in the cache so that no call will search again. .sp By default the value stored in the result variable will be the path at which the file is found. The \fBCMAKE_FIND_PACKAGE_RESOLVE_SYMLINKS\fP variable may be set to \fBTRUE\fP before calling \fBfind_package\fP in order to resolve symbolic links and store the real path to the file. .sp Every non\-REQUIRED \fBfind_package\fP call can be disabled by setting the \fBCMAKE_DISABLE_FIND_PACKAGE_<PackageName>\fP variable to \fBTRUE\fP\&. .SS Package File Interface Variables .sp When loading a find module or package configuration file \fBfind_package\fP defines variables to provide information about the call arguments (and restores their original state before returning): .INDENT 0.0 .TP .B \fBCMAKE_FIND_PACKAGE_NAME\fP the \fB<PackageName>\fP which is searched for .TP .B \fB<PackageName>_FIND_REQUIRED\fP true if \fBREQUIRED\fP option was given .TP .B \fB<PackageName>_FIND_QUIETLY\fP true if \fBQUIET\fP option was given .TP .B \fB<PackageName>_FIND_VERSION\fP full requested version string .TP .B \fB<PackageName>_FIND_VERSION_MAJOR\fP major version if requested, else 0 .TP .B \fB<PackageName>_FIND_VERSION_MINOR\fP minor version if requested, else 0 .TP .B \fB<PackageName>_FIND_VERSION_PATCH\fP patch version if requested, else 0 .TP .B \fB<PackageName>_FIND_VERSION_TWEAK\fP tweak version if requested, else 0 .TP .B \fB<PackageName>_FIND_VERSION_COUNT\fP number of version components, 0 to 4 .TP .B \fB<PackageName>_FIND_VERSION_EXACT\fP true if \fBEXACT\fP option was given .TP .B \fB<PackageName>_FIND_COMPONENTS\fP list of requested components .TP .B \fB<PackageName>_FIND_REQUIRED_<c>\fP true if component \fB<c>\fP is required, false if component \fB<c>\fP is optional .UNINDENT .sp In Module mode the loaded find module is responsible to honor the request detailed by these variables; see the find module for details. In Config mode \fBfind_package\fP handles \fBREQUIRED\fP, \fBQUIET\fP, and \fB[version]\fP options automatically but leaves it to the package configuration file to handle components in a way that makes sense for the package. The package configuration file may set \fB<PackageName>_FOUND\fP to false to tell \fBfind_package\fP that component requirements are not satisfied. .SS find_path .sp A short\-hand signature is: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_path (<VAR> name1 [path1 path2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp The general signature is: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_path ( <VAR> name | NAMES name1 [name2 ...] [HINTS path1 [path2 ... ENV var]] [PATHS path1 [path2 ... ENV var]] [PATH_SUFFIXES suffix1 [suffix2 ...]] [DOC "cache documentation string"] [NO_DEFAULT_PATH] [NO_PACKAGE_ROOT_PATH] [NO_CMAKE_PATH] [NO_CMAKE_ENVIRONMENT_PATH] [NO_SYSTEM_ENVIRONMENT_PATH] [NO_CMAKE_SYSTEM_PATH] [CMAKE_FIND_ROOT_PATH_BOTH | ONLY_CMAKE_FIND_ROOT_PATH | NO_CMAKE_FIND_ROOT_PATH] ) .ft P .fi .UNINDENT .UNINDENT .sp This command is used to find a directory containing the named file\&. A cache entry named by \fB<VAR>\fP is created to store the result of this command. If the file in a directory is found the result is stored in the variable and the search will not be repeated unless the variable is cleared. If nothing is found, the result will be \fB<VAR>\-NOTFOUND\fP, and the search will be attempted again the next time find_path is invoked with the same variable. .sp Options include: .INDENT 0.0 .TP .B \fBNAMES\fP Specify one or more possible names for the file in a directory\&. .sp When using this to specify names with and without a version suffix, we recommend specifying the unversioned name first so that locally\-built packages can be found before those provided by distributions. .TP .B \fBHINTS\fP, \fBPATHS\fP Specify directories to search in addition to the default locations. The \fBENV var\fP sub\-option reads paths from a system environment variable. .TP .B \fBPATH_SUFFIXES\fP Specify additional subdirectories to check below each directory location otherwise considered. .TP .B \fBDOC\fP Specify the documentation string for the \fB<VAR>\fP cache entry. .UNINDENT .sp If \fBNO_DEFAULT_PATH\fP is specified, then no additional paths are added to the search. If \fBNO_DEFAULT_PATH\fP is not specified, the search process is as follows: .INDENT 0.0 .IP 1. 3 If called from within a find module loaded by \fBfind_package(<PackageName>)\fP, search prefixes unique to the current package being found. Specifically look in the \fB<PackageName>_ROOT\fP CMake variable and the \fB<PackageName>_ROOT\fP environment variable. The package root variables are maintained as a stack so if called from nested find modules, root paths from the parent\(aqs find module will be searched after paths from the current module, i.e. \fB<CurrentPackage>_ROOT\fP, \fBENV{<CurrentPackage>_ROOT}\fP, \fB<ParentPackage>_ROOT\fP, \fBENV{<ParentPackage>_ROOT}\fP, etc. This can be skipped if \fBNO_PACKAGE_ROOT_PATH\fP is passed. See policy \fBCMP0074\fP\&. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/include/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/include\fP for each \fB<prefix>\fP in the \fB<PackageName>_ROOT\fP CMake variable and the \fB<PackageName>_ROOT\fP environment variable if called from within a find module loaded by \fBfind_package(<PackageName>)\fP .UNINDENT .IP 2. 3 Search paths specified in cmake\-specific cache variables. These are intended to be used on the command line with a \fB\-DVAR=value\fP\&. The values are interpreted as \fIsemicolon\-separated lists\fP\&. This can be skipped if \fBNO_CMAKE_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/include/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/include\fP for each \fB<prefix>\fP in \fBCMAKE_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_INCLUDE_PATH\fP .IP \(bu 2 \fBCMAKE_FRAMEWORK_PATH\fP .UNINDENT .IP 3. 3 Search paths specified in cmake\-specific environment variables. These are intended to be set in the user\(aqs shell configuration, and therefore use the host\(aqs native path separator (\fB;\fP on Windows and \fB:\fP on UNIX). This can be skipped if \fBNO_CMAKE_ENVIRONMENT_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/include/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/include\fP for each \fB<prefix>\fP in \fBCMAKE_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_INCLUDE_PATH\fP .IP \(bu 2 \fBCMAKE_FRAMEWORK_PATH\fP .UNINDENT .IP 4. 3 Search the paths specified by the \fBHINTS\fP option. These should be paths computed by system introspection, such as a hint provided by the location of another item already found. Hard\-coded guesses should be specified with the \fBPATHS\fP option. .IP 5. 3 Search the standard system environment variables. This can be skipped if \fBNO_SYSTEM_ENVIRONMENT_PATH\fP is an argument. .INDENT 3.0 .IP \(bu 2 Directories in \fBINCLUDE\fP\&. On Windows hosts: \fB<prefix>/include/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/include\fP for each \fB<prefix>/[s]bin\fP in \fBPATH\fP, and \fB<entry>/include\fP for other entries in \fBPATH\fP, and the directories in \fBPATH\fP itself. .UNINDENT .IP 6. 3 Search cmake variables defined in the Platform files for the current system. This can be skipped if \fBNO_CMAKE_SYSTEM_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/include/<arch>\fP if \fBCMAKE_LIBRARY_ARCHITECTURE\fP is set, and \fB<prefix>/include\fP for each \fB<prefix>\fP in \fBCMAKE_SYSTEM_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_SYSTEM_INCLUDE_PATH\fP .IP \(bu 2 \fBCMAKE_SYSTEM_FRAMEWORK_PATH\fP .UNINDENT .IP 7. 3 Search the paths specified by the PATHS option or in the short\-hand version of the command. These are typically hard\-coded guesses. .UNINDENT .sp On macOS the \fBCMAKE_FIND_FRAMEWORK\fP and \fBCMAKE_FIND_APPBUNDLE\fP variables determine the order of preference between Apple\-style and unix\-style package components. .sp The CMake variable \fBCMAKE_FIND_ROOT_PATH\fP specifies one or more directories to be prepended to all other search directories. This effectively "re\-roots" the entire search under given locations. Paths which are descendants of the \fBCMAKE_STAGING_PREFIX\fP are excluded from this re\-rooting, because that variable is always a path on the host system. By default the \fBCMAKE_FIND_ROOT_PATH\fP is empty. .sp The \fBCMAKE_SYSROOT\fP variable can also be used to specify exactly one directory to use as a prefix. Setting \fBCMAKE_SYSROOT\fP also has other effects. See the documentation for that variable for more. .sp These variables are especially useful when cross\-compiling to point to the root directory of the target environment and CMake will search there too. By default at first the directories listed in \fBCMAKE_FIND_ROOT_PATH\fP are searched, then the \fBCMAKE_SYSROOT\fP directory is searched, and then the non\-rooted directories will be searched. The default behavior can be adjusted by setting \fBCMAKE_FIND_ROOT_PATH_MODE_INCLUDE\fP\&. This behavior can be manually overridden on a per\-call basis using options: .INDENT 0.0 .TP .B \fBCMAKE_FIND_ROOT_PATH_BOTH\fP Search in the order described above. .TP .B \fBNO_CMAKE_FIND_ROOT_PATH\fP Do not use the \fBCMAKE_FIND_ROOT_PATH\fP variable. .TP .B \fBONLY_CMAKE_FIND_ROOT_PATH\fP Search only the re\-rooted directories and directories below \fBCMAKE_STAGING_PREFIX\fP\&. .UNINDENT .sp The default search order is designed to be most\-specific to least\-specific for common use cases. Projects may override the order by simply calling the command multiple times and using the \fBNO_*\fP options: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_path (<VAR> NAMES name PATHS paths... NO_DEFAULT_PATH) find_path (<VAR> NAMES name) .ft P .fi .UNINDENT .UNINDENT .sp Once one of the calls succeeds the result variable will be set and stored in the cache so that no call will search again. .sp When searching for frameworks, if the file is specified as \fBA/b.h\fP, then the framework search will look for \fBA.framework/Headers/b.h\fP\&. If that is found the path will be set to the path to the framework. CMake will convert this to the correct \fB\-F\fP option to include the file. .SS find_program .sp A short\-hand signature is: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_program (<VAR> name1 [path1 path2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp The general signature is: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_program ( <VAR> name | NAMES name1 [name2 ...] [NAMES_PER_DIR] [HINTS path1 [path2 ... ENV var]] [PATHS path1 [path2 ... ENV var]] [PATH_SUFFIXES suffix1 [suffix2 ...]] [DOC "cache documentation string"] [NO_DEFAULT_PATH] [NO_PACKAGE_ROOT_PATH] [NO_CMAKE_PATH] [NO_CMAKE_ENVIRONMENT_PATH] [NO_SYSTEM_ENVIRONMENT_PATH] [NO_CMAKE_SYSTEM_PATH] [CMAKE_FIND_ROOT_PATH_BOTH | ONLY_CMAKE_FIND_ROOT_PATH | NO_CMAKE_FIND_ROOT_PATH] ) .ft P .fi .UNINDENT .UNINDENT .sp This command is used to find a program\&. A cache entry named by \fB<VAR>\fP is created to store the result of this command. If the program is found the result is stored in the variable and the search will not be repeated unless the variable is cleared. If nothing is found, the result will be \fB<VAR>\-NOTFOUND\fP, and the search will be attempted again the next time find_program is invoked with the same variable. .sp Options include: .INDENT 0.0 .TP .B \fBNAMES\fP Specify one or more possible names for the program\&. .sp When using this to specify names with and without a version suffix, we recommend specifying the unversioned name first so that locally\-built packages can be found before those provided by distributions. .TP .B \fBHINTS\fP, \fBPATHS\fP Specify directories to search in addition to the default locations. The \fBENV var\fP sub\-option reads paths from a system environment variable. .TP .B \fBPATH_SUFFIXES\fP Specify additional subdirectories to check below each directory location otherwise considered. .TP .B \fBDOC\fP Specify the documentation string for the \fB<VAR>\fP cache entry. .UNINDENT .sp If \fBNO_DEFAULT_PATH\fP is specified, then no additional paths are added to the search. If \fBNO_DEFAULT_PATH\fP is not specified, the search process is as follows: .INDENT 0.0 .IP 1. 3 If called from within a find module loaded by \fBfind_package(<PackageName>)\fP, search prefixes unique to the current package being found. Specifically look in the \fB<PackageName>_ROOT\fP CMake variable and the \fB<PackageName>_ROOT\fP environment variable. The package root variables are maintained as a stack so if called from nested find modules, root paths from the parent\(aqs find module will be searched after paths from the current module, i.e. \fB<CurrentPackage>_ROOT\fP, \fBENV{<CurrentPackage>_ROOT}\fP, \fB<ParentPackage>_ROOT\fP, \fBENV{<ParentPackage>_ROOT}\fP, etc. This can be skipped if \fBNO_PACKAGE_ROOT_PATH\fP is passed. See policy \fBCMP0074\fP\&. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/[s]bin\fP for each \fB<prefix>\fP in the \fB<PackageName>_ROOT\fP CMake variable and the \fB<PackageName>_ROOT\fP environment variable if called from within a find module loaded by \fBfind_package(<PackageName>)\fP .UNINDENT .IP 2. 3 Search paths specified in cmake\-specific cache variables. These are intended to be used on the command line with a \fB\-DVAR=value\fP\&. The values are interpreted as \fIsemicolon\-separated lists\fP\&. This can be skipped if \fBNO_CMAKE_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/[s]bin\fP for each \fB<prefix>\fP in \fBCMAKE_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_PROGRAM_PATH\fP .IP \(bu 2 \fBCMAKE_APPBUNDLE_PATH\fP .UNINDENT .IP 3. 3 Search paths specified in cmake\-specific environment variables. These are intended to be set in the user\(aqs shell configuration, and therefore use the host\(aqs native path separator (\fB;\fP on Windows and \fB:\fP on UNIX). This can be skipped if \fBNO_CMAKE_ENVIRONMENT_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/[s]bin\fP for each \fB<prefix>\fP in \fBCMAKE_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_PROGRAM_PATH\fP .IP \(bu 2 \fBCMAKE_APPBUNDLE_PATH\fP .UNINDENT .IP 4. 3 Search the paths specified by the \fBHINTS\fP option. These should be paths computed by system introspection, such as a hint provided by the location of another item already found. Hard\-coded guesses should be specified with the \fBPATHS\fP option. .IP 5. 3 Search the standard system environment variables. This can be skipped if \fBNO_SYSTEM_ENVIRONMENT_PATH\fP is an argument. .INDENT 3.0 .IP \(bu 2 \fBPATH\fP .UNINDENT .IP 6. 3 Search cmake variables defined in the Platform files for the current system. This can be skipped if \fBNO_CMAKE_SYSTEM_PATH\fP is passed. .INDENT 3.0 .IP \(bu 2 \fB<prefix>/[s]bin\fP for each \fB<prefix>\fP in \fBCMAKE_SYSTEM_PREFIX_PATH\fP .IP \(bu 2 \fBCMAKE_SYSTEM_PROGRAM_PATH\fP .IP \(bu 2 \fBCMAKE_SYSTEM_APPBUNDLE_PATH\fP .UNINDENT .IP 7. 3 Search the paths specified by the PATHS option or in the short\-hand version of the command. These are typically hard\-coded guesses. .UNINDENT .sp On macOS the \fBCMAKE_FIND_FRAMEWORK\fP and \fBCMAKE_FIND_APPBUNDLE\fP variables determine the order of preference between Apple\-style and unix\-style package components. .sp The CMake variable \fBCMAKE_FIND_ROOT_PATH\fP specifies one or more directories to be prepended to all other search directories. This effectively "re\-roots" the entire search under given locations. Paths which are descendants of the \fBCMAKE_STAGING_PREFIX\fP are excluded from this re\-rooting, because that variable is always a path on the host system. By default the \fBCMAKE_FIND_ROOT_PATH\fP is empty. .sp The \fBCMAKE_SYSROOT\fP variable can also be used to specify exactly one directory to use as a prefix. Setting \fBCMAKE_SYSROOT\fP also has other effects. See the documentation for that variable for more. .sp These variables are especially useful when cross\-compiling to point to the root directory of the target environment and CMake will search there too. By default at first the directories listed in \fBCMAKE_FIND_ROOT_PATH\fP are searched, then the \fBCMAKE_SYSROOT\fP directory is searched, and then the non\-rooted directories will be searched. The default behavior can be adjusted by setting \fBCMAKE_FIND_ROOT_PATH_MODE_PROGRAM\fP\&. This behavior can be manually overridden on a per\-call basis using options: .INDENT 0.0 .TP .B \fBCMAKE_FIND_ROOT_PATH_BOTH\fP Search in the order described above. .TP .B \fBNO_CMAKE_FIND_ROOT_PATH\fP Do not use the \fBCMAKE_FIND_ROOT_PATH\fP variable. .TP .B \fBONLY_CMAKE_FIND_ROOT_PATH\fP Search only the re\-rooted directories and directories below \fBCMAKE_STAGING_PREFIX\fP\&. .UNINDENT .sp The default search order is designed to be most\-specific to least\-specific for common use cases. Projects may override the order by simply calling the command multiple times and using the \fBNO_*\fP options: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C find_program (<VAR> NAMES name PATHS paths... NO_DEFAULT_PATH) find_program (<VAR> NAMES name) .ft P .fi .UNINDENT .UNINDENT .sp Once one of the calls succeeds the result variable will be set and stored in the cache so that no call will search again. .sp When more than one value is given to the \fBNAMES\fP option this command by default will consider one name at a time and search every directory for it. The \fBNAMES_PER_DIR\fP option tells this command to consider one directory at a time and search for all names in it. .SS foreach .sp Evaluate a group of commands for each value in a list. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C foreach(<loop_var> <items>) <commands> endforeach() .ft P .fi .UNINDENT .UNINDENT .sp where \fB<items>\fP is a list of items that are separated by semicolon or whitespace. All commands between \fBforeach\fP and the matching \fBendforeach\fP are recorded without being invoked. Once the \fBendforeach\fP is evaluated, the recorded list of commands is invoked once for each item in \fB<items>\fP\&. At the beginning of each iteration the variable \fBloop_var\fP will be set to the value of the current item. .sp The commands \fBbreak()\fP and \fBcontinue()\fP provide means to escape from the normal control flow. .sp Per legacy, the \fBendforeach()\fP command admits an optional \fB<loop_var>\fP argument. If used, it must be a verbatim repeat of the argument of the opening \fBforeach\fP command. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C foreach(<loop_var> RANGE <stop>) .ft P .fi .UNINDENT .UNINDENT .sp In this variant, \fBforeach\fP iterates over the numbers 0, 1, ... up to (and including) the nonnegative integer \fB<stop>\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C foreach(<loop_var> RANGE <start> <stop> [<step>]) .ft P .fi .UNINDENT .UNINDENT .sp In this variant, \fBforeach\fP iterates over the numbers from \fB<start>\fP up to at most \fB<stop>\fP in steps of \fB<step>\fP\&. If \fB<step>\fP is not specified, then the step size is 1. The three arguments \fB<start>\fP \fB<stop>\fP \fB<step>\fP must all be nonnegative integers, and \fB<stop>\fP must not be smaller than \fB<start>\fP; otherwise you enter the danger zone of undocumented behavior that may change in future releases. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C foreach(loop_var IN [LISTS [<lists>]] [ITEMS [<items>]]) .ft P .fi .UNINDENT .UNINDENT .sp In this variant, \fB<lists>\fP is a whitespace or semicolon separated list of list\-valued variables. The \fBforeach\fP command iterates over each item in each given list. The \fB<items>\fP following the \fBITEMS\fP keyword are processed as in the first variant of the \fBforeach\fP command. The forms \fBLISTS A\fP and \fBITEMS ${A}\fP are equivalent. .sp The following example shows how the \fBLISTS\fP option is processed: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set(A 0;1) set(B 2 3) set(C "4 5") set(D 6;7 8) set(E "") foreach(X IN LISTS A B C D E) message(STATUS "X=${X}") endforeach() .ft P .fi .UNINDENT .UNINDENT .sp yields .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C \-\- X=0 \-\- X=1 \-\- X=2 \-\- X=3 \-\- X=4 5 \-\- X=6 \-\- X=7 \-\- X=8 .ft P .fi .UNINDENT .UNINDENT .SS function .sp Start recording a function for later invocation as a command. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C function(<name> [<arg1> ...]) <commands> endfunction() .ft P .fi .UNINDENT .UNINDENT .sp Defines a function named \fB<name>\fP that takes arguments named \fB<arg1>\fP, ... The \fB<commands>\fP in the function definition are recorded; they are not executed until the function is invoked. .sp Per legacy, the \fBendfunction()\fP command admits an optional \fB<name>\fP argument. If used, it must be a verbatim repeat of the argument of the opening \fBfunction\fP command. .sp A function opens a new scope: see \fBset(var PARENT_SCOPE)\fP for details. .sp See the \fBcmake_policy()\fP command documentation for the behavior of policies inside functions. .sp See the \fBmacro()\fP command documentation for differences between CMake functions and macros. .SS Invocation .sp The function invocation is case\-insensitive. A function defined as .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C function(foo) <commands> endfunction() .ft P .fi .UNINDENT .UNINDENT .sp can be invoked through any of .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C foo() Foo() FOO() .ft P .fi .UNINDENT .UNINDENT .sp and so on. However, it is strongly recommended to stay with the case chosen in the function definition. Typically functions use all\-lowercase names. .SS Arguments .sp When the function is invoked, the recorded \fB<commands>\fP are first modified by replacing formal parameters (\fB${arg1}\fP, ...) with the arguments passed, and then invoked as normal commands. .sp In addition to referencing the formal parameters you can reference the \fBARGC\fP variable which will be set to the number of arguments passed into the function as well as \fBARGV0\fP, \fBARGV1\fP, \fBARGV2\fP, ... which will have the actual values of the arguments passed in. This facilitates creating functions with optional arguments. .sp Furthermore, \fBARGV\fP holds the list of all arguments given to the function and \fBARGN\fP holds the list of arguments past the last expected argument. Referencing to \fBARGV#\fP arguments beyond \fBARGC\fP have undefined behavior. Checking that \fBARGC\fP is greater than \fB#\fP is the only way to ensure that \fBARGV#\fP was passed to the function as an extra argument. .SS get_cmake_property .sp Get a global property of the CMake instance. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C get_cmake_property(<var> <property>) .ft P .fi .UNINDENT .UNINDENT .sp Gets a global property from the CMake instance. The value of the \fB<property>\fP is stored in the variable \fB<var>\fP\&. If the property is not found, \fB<var>\fP will be set to \fBNOTFOUND\fP\&. See the \fBcmake\-properties(7)\fP manual for available properties. .sp See also the \fBget_property()\fP command \fBGLOBAL\fP option. .sp In addition to global properties, this command (for historical reasons) also supports the \fBVARIABLES\fP and \fBMACROS\fP directory properties. It also supports a special \fBCOMPONENTS\fP global property that lists the components given to the \fBinstall()\fP command. .SS get_directory_property .sp Get a property of \fBDIRECTORY\fP scope. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C get_directory_property(<variable> [DIRECTORY <dir>] <prop\-name>) .ft P .fi .UNINDENT .UNINDENT .sp Stores a property of directory scope in the named \fB<variable>\fP\&. The \fBDIRECTORY\fP argument specifies another directory from which to retrieve the property value instead of the current directory. The specified directory must have already been traversed by CMake. .sp If the property is not defined for the nominated directory scope, an empty string is returned. In the case of \fBINHERITED\fP properties, if the property is not found for the nominated directory scope, the search will chain to a parent scope as described for the \fBdefine_property()\fP command. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C get_directory_property(<variable> [DIRECTORY <dir>] DEFINITION <var\-name>) .ft P .fi .UNINDENT .UNINDENT .sp Get a variable definition from a directory. This form is useful to get a variable definition from another directory. .sp See also the more general \fBget_property()\fP command. .SS get_filename_component .sp Get a specific component of a full filename. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C get_filename_component(<var> <FileName> <mode> [CACHE]) .ft P .fi .UNINDENT .UNINDENT .sp Sets \fB<var>\fP to a component of \fB<FileName>\fP, where \fB<mode>\fP is one of: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C DIRECTORY = Directory without file name NAME = File name without directory EXT = File name longest extension (.b.c from d/a.b.c) NAME_WE = File name without directory or longest extension LAST_EXT = File name last extension (.c from d/a.b.c) NAME_WLE = File name without directory or last extension PATH = Legacy alias for DIRECTORY (use for CMake <= 2.8.11) .ft P .fi .UNINDENT .UNINDENT .sp Paths are returned with forward slashes and have no trailing slashes. If the optional \fBCACHE\fP argument is specified, the result variable is added to the cache. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C get_filename_component(<var> <FileName> <mode> [BASE_DIR <dir>] [CACHE]) .ft P .fi .UNINDENT .UNINDENT .sp Sets \fB<var>\fP to the absolute path of \fB<FileName>\fP, where \fB<mode>\fP is one of: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ABSOLUTE = Full path to file REALPATH = Full path to existing file with symlinks resolved .ft P .fi .UNINDENT .UNINDENT .sp If the provided \fB<FileName>\fP is a relative path, it is evaluated relative to the given base directory \fB<dir>\fP\&. If no base directory is provided, the default base directory will be \fBCMAKE_CURRENT_SOURCE_DIR\fP\&. .sp Paths are returned with forward slashes and have no trailing slashes. If the optional \fBCACHE\fP argument is specified, the result variable is added to the cache. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C get_filename_component(<var> <FileName> PROGRAM [PROGRAM_ARGS <arg_var>] [CACHE]) .ft P .fi .UNINDENT .UNINDENT .sp The program in \fB<FileName>\fP will be found in the system search path or left as a full path. If \fBPROGRAM_ARGS\fP is present with \fBPROGRAM\fP, then any command\-line arguments present in the \fB<FileName>\fP string are split from the program name and stored in \fB<arg_var>\fP\&. This is used to separate a program name from its arguments in a command line string. .SS get_property .sp Get a property. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C get_property(<variable> <GLOBAL | DIRECTORY [<dir>] | TARGET <target> | SOURCE <source> | INSTALL <file> | TEST <test> | CACHE <entry> | VARIABLE > PROPERTY <name> [SET | DEFINED | BRIEF_DOCS | FULL_DOCS]) .ft P .fi .UNINDENT .UNINDENT .sp Gets one property from one object in a scope. .sp The first argument specifies the variable in which to store the result. The second argument determines the scope from which to get the property. It must be one of the following: .INDENT 0.0 .TP .B \fBGLOBAL\fP Scope is unique and does not accept a name. .TP .B \fBDIRECTORY\fP Scope defaults to the current directory but another directory (already processed by CMake) may be named by the full or relative path \fB<dir>\fP\&. .TP .B \fBTARGET\fP Scope must name one existing target. .TP .B \fBSOURCE\fP Scope must name one source file. .TP .B \fBINSTALL\fP Scope must name one installed file path. .TP .B \fBTEST\fP Scope must name one existing test. .TP .B \fBCACHE\fP Scope must name one cache entry. .TP .B \fBVARIABLE\fP Scope is unique and does not accept a name. .UNINDENT .sp The required \fBPROPERTY\fP option is immediately followed by the name of the property to get. If the property is not set an empty value is returned, although some properties support inheriting from a parent scope if defined to behave that way (see \fBdefine_property()\fP). .sp If the \fBSET\fP option is given the variable is set to a boolean value indicating whether the property has been set. If the \fBDEFINED\fP option is given the variable is set to a boolean value indicating whether the property has been defined such as with the \fBdefine_property()\fP command. .sp If \fBBRIEF_DOCS\fP or \fBFULL_DOCS\fP is given then the variable is set to a string containing documentation for the requested property. If documentation is requested for a property that has not been defined \fBNOTFOUND\fP is returned. .SS if .sp Conditionally execute a group of commands. .SS Synopsis .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if(<condition>) <commands> elseif(<condition>) # optional block, can be repeated <commands> else() # optional block <commands> endif() .ft P .fi .UNINDENT .UNINDENT .sp Evaluates the \fBcondition\fP argument of the \fBif\fP clause according to the \fI\%Condition syntax\fP described below. If the result is true, then the \fBcommands\fP in the \fBif\fP block are executed. Otherwise, optional \fBelseif\fP blocks are processed in the same way. Finally, if no \fBcondition\fP is true, \fBcommands\fP in the optional \fBelse\fP block are executed. .sp Per legacy, the \fBelse()\fP and \fBendif()\fP commands admit an optional \fB<condition>\fP argument. If used, it must be a verbatim repeat of the argument of the opening \fBif\fP command. .SS Condition Syntax .sp The following syntax applies to the \fBcondition\fP argument of the \fBif\fP, \fBelseif\fP and \fBwhile()\fP clauses. .sp Compound conditions are evaluated in the following order of precedence: Innermost parentheses are evaluated first. Next come unary tests such as \fBEXISTS\fP, \fBCOMMAND\fP, and \fBDEFINED\fP\&. Then binary tests such as \fBEQUAL\fP, \fBLESS\fP, \fBLESS_EQUAL\fP, \fBGREATER\fP, \fBGREATER_EQUAL\fP, \fBSTREQUAL\fP, \fBSTRLESS\fP, \fBSTRLESS_EQUAL\fP, \fBSTRGREATER\fP, \fBSTRGREATER_EQUAL\fP, \fBVERSION_EQUAL\fP, \fBVERSION_LESS\fP, \fBVERSION_LESS_EQUAL\fP, \fBVERSION_GREATER\fP, \fBVERSION_GREATER_EQUAL\fP, and \fBMATCHES\fP\&. Then the boolean operators in the order \fBNOT\fP, \fBAND\fP, and finally \fBOR\fP\&. .sp Possible conditions are: .INDENT 0.0 .TP .B \fBif(<constant>)\fP True if the constant is \fB1\fP, \fBON\fP, \fBYES\fP, \fBTRUE\fP, \fBY\fP, or a non\-zero number. False if the constant is \fB0\fP, \fBOFF\fP, \fBNO\fP, \fBFALSE\fP, \fBN\fP, \fBIGNORE\fP, \fBNOTFOUND\fP, the empty string, or ends in the suffix \fB\-NOTFOUND\fP\&. Named boolean constants are case\-insensitive. If the argument is not one of these specific constants, it is treated as a variable or string and the following signature is used. .TP .B \fBif(<variable|string>)\fP True if given a variable that is defined to a value that is not a false constant. False otherwise. (Note macro arguments are not variables.) .TP .B \fBif(NOT <condition>)\fP True if the condition is not true. .TP .B \fBif(<cond1> AND <cond2>)\fP True if both conditions would be considered true individually. .TP .B \fBif(<cond1> OR <cond2>)\fP True if either condition would be considered true individually. .TP .B \fBif(COMMAND command\-name)\fP True if the given name is a command, macro or function that can be invoked. .TP .B \fBif(POLICY policy\-id)\fP True if the given name is an existing policy (of the form \fBCMP<NNNN>\fP). .TP .B \fBif(TARGET target\-name)\fP True if the given name is an existing logical target name created by a call to the \fBadd_executable()\fP, \fBadd_library()\fP, or \fBadd_custom_target()\fP command that has already been invoked (in any directory). .TP .B \fBif(TEST test\-name)\fP True if the given name is an existing test name created by the \fBadd_test()\fP command. .TP .B \fBif(EXISTS path\-to\-file\-or\-directory)\fP True if the named file or directory exists. Behavior is well\-defined only for full paths. Resolves symbolic links, i.e. if the named file or directory is a symbolic link, returns true if the target of the symbolic link exists. .TP .B \fBif(file1 IS_NEWER_THAN file2)\fP True if \fBfile1\fP is newer than \fBfile2\fP or if one of the two files doesn\(aqt exist. Behavior is well\-defined only for full paths. If the file time stamps are exactly the same, an \fBIS_NEWER_THAN\fP comparison returns true, so that any dependent build operations will occur in the event of a tie. This includes the case of passing the same file name for both file1 and file2. .TP .B \fBif(IS_DIRECTORY path\-to\-directory)\fP True if the given name is a directory. Behavior is well\-defined only for full paths. .TP .B \fBif(IS_SYMLINK file\-name)\fP True if the given name is a symbolic link. Behavior is well\-defined only for full paths. .TP .B \fBif(IS_ABSOLUTE path)\fP True if the given path is an absolute path. .TP .B \fBif(<variable|string> MATCHES regex)\fP True if the given string or variable\(aqs value matches the given regular condition. See \fIRegex Specification\fP for regex format. \fB()\fP groups are captured in \fBCMAKE_MATCH_<n>\fP variables. .TP .B \fBif(<variable|string> LESS <variable|string>)\fP True if the given string or variable\(aqs value is a valid number and less than that on the right. .TP .B \fBif(<variable|string> GREATER <variable|string>)\fP True if the given string or variable\(aqs value is a valid number and greater than that on the right. .TP .B \fBif(<variable|string> EQUAL <variable|string>)\fP True if the given string or variable\(aqs value is a valid number and equal to that on the right. .TP .B \fBif(<variable|string> LESS_EQUAL <variable|string>)\fP True if the given string or variable\(aqs value is a valid number and less than or equal to that on the right. .TP .B \fBif(<variable|string> GREATER_EQUAL <variable|string>)\fP True if the given string or variable\(aqs value is a valid number and greater than or equal to that on the right. .TP .B \fBif(<variable|string> STRLESS <variable|string>)\fP True if the given string or variable\(aqs value is lexicographically less than the string or variable on the right. .TP .B \fBif(<variable|string> STRGREATER <variable|string>)\fP True if the given string or variable\(aqs value is lexicographically greater than the string or variable on the right. .TP .B \fBif(<variable|string> STREQUAL <variable|string>)\fP True if the given string or variable\(aqs value is lexicographically equal to the string or variable on the right. .TP .B \fBif(<variable|string> STRLESS_EQUAL <variable|string>)\fP True if the given string or variable\(aqs value is lexicographically less than or equal to the string or variable on the right. .TP .B \fBif(<variable|string> STRGREATER_EQUAL <variable|string>)\fP True if the given string or variable\(aqs value is lexicographically greater than or equal to the string or variable on the right. .TP .B \fBif(<variable|string> VERSION_LESS <variable|string>)\fP Component\-wise integer version number comparison (version format is \fBmajor[.minor[.patch[.tweak]]]\fP, omitted components are treated as zero). Any non\-integer version component or non\-integer trailing part of a version component effectively truncates the string at that point. .TP .B \fBif(<variable|string> VERSION_GREATER <variable|string>)\fP Component\-wise integer version number comparison (version format is \fBmajor[.minor[.patch[.tweak]]]\fP, omitted components are treated as zero). Any non\-integer version component or non\-integer trailing part of a version component effectively truncates the string at that point. .TP .B \fBif(<variable|string> VERSION_EQUAL <variable|string>)\fP Component\-wise integer version number comparison (version format is \fBmajor[.minor[.patch[.tweak]]]\fP, omitted components are treated as zero). Any non\-integer version component or non\-integer trailing part of a version component effectively truncates the string at that point. .TP .B \fBif(<variable|string> VERSION_LESS_EQUAL <variable|string>)\fP Component\-wise integer version number comparison (version format is \fBmajor[.minor[.patch[.tweak]]]\fP, omitted components are treated as zero). Any non\-integer version component or non\-integer trailing part of a version component effectively truncates the string at that point. .TP .B \fBif(<variable|string> VERSION_GREATER_EQUAL <variable|string>)\fP Component\-wise integer version number comparison (version format is \fBmajor[.minor[.patch[.tweak]]]\fP, omitted components are treated as zero). Any non\-integer version component or non\-integer trailing part of a version component effectively truncates the string at that point. .TP .B \fBif(<variable|string> IN_LIST <variable>)\fP True if the given element is contained in the named list variable. .TP .B \fBif(DEFINED <name>|CACHE{<name>}|ENV{<name>})\fP True if a variable, cache variable or environment variable with given \fB<name>\fP is defined. The value of the variable does not matter. Note that macro arguments are not variables. .TP .B \fBif((condition) AND (condition OR (condition)))\fP The conditions inside the parenthesis are evaluated first and then the remaining condition is evaluated as in the previous examples. Where there are nested parenthesis the innermost are evaluated as part of evaluating the condition that contains them. .UNINDENT .SS Variable Expansion .sp The if command was written very early in CMake\(aqs history, predating the \fB${}\fP variable evaluation syntax, and for convenience evaluates variables named by its arguments as shown in the above signatures. Note that normal variable evaluation with \fB${}\fP applies before the if command even receives the arguments. Therefore code like .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set(var1 OFF) set(var2 "var1") if(${var2}) .ft P .fi .UNINDENT .UNINDENT .sp appears to the if command as .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if(var1) .ft P .fi .UNINDENT .UNINDENT .sp and is evaluated according to the \fBif(<variable>)\fP case documented above. The result is \fBOFF\fP which is false. However, if we remove the \fB${}\fP from the example then the command sees .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if(var2) .ft P .fi .UNINDENT .UNINDENT .sp which is true because \fBvar2\fP is defined to \fBvar1\fP which is not a false constant. .sp Automatic evaluation applies in the other cases whenever the above\-documented condition syntax accepts \fB<variable|string>\fP: .INDENT 0.0 .IP \(bu 2 The left hand argument to \fBMATCHES\fP is first checked to see if it is a defined variable, if so the variable\(aqs value is used, otherwise the original value is used. .IP \(bu 2 If the left hand argument to \fBMATCHES\fP is missing it returns false without error .IP \(bu 2 Both left and right hand arguments to \fBLESS\fP, \fBGREATER\fP, \fBEQUAL\fP, \fBLESS_EQUAL\fP, and \fBGREATER_EQUAL\fP, are independently tested to see if they are defined variables, if so their defined values are used otherwise the original value is used. .IP \(bu 2 Both left and right hand arguments to \fBSTRLESS\fP, \fBSTRGREATER\fP, \fBSTREQUAL\fP, \fBSTRLESS_EQUAL\fP, and \fBSTRGREATER_EQUAL\fP are independently tested to see if they are defined variables, if so their defined values are used otherwise the original value is used. .IP \(bu 2 Both left and right hand arguments to \fBVERSION_LESS\fP, \fBVERSION_GREATER\fP, \fBVERSION_EQUAL\fP, \fBVERSION_LESS_EQUAL\fP, and \fBVERSION_GREATER_EQUAL\fP are independently tested to see if they are defined variables, if so their defined values are used otherwise the original value is used. .IP \(bu 2 The right hand argument to \fBNOT\fP is tested to see if it is a boolean constant, if so the value is used, otherwise it is assumed to be a variable and it is dereferenced. .IP \(bu 2 The left and right hand arguments to \fBAND\fP and \fBOR\fP are independently tested to see if they are boolean constants, if so they are used as such, otherwise they are assumed to be variables and are dereferenced. .UNINDENT .sp To prevent ambiguity, potential variable or keyword names can be specified in a \fIQuoted Argument\fP or a \fIBracket Argument\fP\&. A quoted or bracketed variable or keyword will be interpreted as a string and not dereferenced or interpreted. See policy \fBCMP0054\fP\&. .sp There is no automatic evaluation for environment or cache \fIVariable References\fP\&. Their values must be referenced as \fB$ENV{<name>}\fP or \fB$CACHE{<name>}\fP wherever the above\-documented condition syntax accepts \fB<variable|string>\fP\&. .SS include .sp Load and run CMake code from a file or module. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C include(<file|module> [OPTIONAL] [RESULT_VARIABLE <var>] [NO_POLICY_SCOPE]) .ft P .fi .UNINDENT .UNINDENT .sp Loads and runs CMake code from the file given. Variable reads and writes access the scope of the caller (dynamic scoping). If \fBOPTIONAL\fP is present, then no error is raised if the file does not exist. If \fBRESULT_VARIABLE\fP is given the variable \fB<var>\fP will be set to the full filename which has been included or \fBNOTFOUND\fP if it failed. .sp If a module is specified instead of a file, the file with name \fB<modulename>.cmake\fP is searched first in \fBCMAKE_MODULE_PATH\fP, then in the CMake module directory. There is one exception to this: if the file which calls \fBinclude()\fP is located itself in the CMake builtin module directory, then first the CMake builtin module directory is searched and \fBCMAKE_MODULE_PATH\fP afterwards. See also policy \fBCMP0017\fP\&. .sp See the \fBcmake_policy()\fP command documentation for discussion of the \fBNO_POLICY_SCOPE\fP option. .SS include_guard .sp Provides an include guard for the file currently being processed by CMake. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C include_guard([DIRECTORY|GLOBAL]) .ft P .fi .UNINDENT .UNINDENT .sp Sets up an include guard for the current CMake file (see the \fBCMAKE_CURRENT_LIST_FILE\fP variable documentation). .sp CMake will end its processing of the current file at the location of the \fBinclude_guard()\fP command if the current file has already been processed for the applicable scope (see below). This provides functionality similar to the include guards commonly used in source headers or to the \fB#pragma once\fP directive. If the current file has been processed previously for the applicable scope, the effect is as though \fBreturn()\fP had been called. Do not call this command from inside a function being defined within the current file. .sp An optional argument specifying the scope of the guard may be provided. Possible values for the option are: .INDENT 0.0 .TP .B \fBDIRECTORY\fP The include guard applies within the current directory and below. The file will only be included once within this directory scope, but may be included again by other files outside of this directory (i.e. a parent directory or another directory not pulled in by \fBadd_subdirectory()\fP or \fBinclude()\fP from the current file or its children). .TP .B \fBGLOBAL\fP The include guard applies globally to the whole build. The current file will only be included once regardless of the scope. .UNINDENT .sp If no arguments given, \fBinclude_guard\fP has the same scope as a variable, meaning that the include guard effect is isolated by the most recent function scope or current directory if no inner function scopes exist. In this case the command behavior is the same as: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if(__CURRENT_FILE_VAR__) return() endif() set(__CURRENT_FILE_VAR__ TRUE) .ft P .fi .UNINDENT .UNINDENT .SS list .sp List operations. .SS Synopsis .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C \fI\%Reading\fP list(\fI\%LENGTH\fP <list> <out\-var>) list(\fI\%GET\fP <list> <element index> [<index> ...] <out\-var>) list(\fI\%JOIN\fP <list> <glue> <out\-var>) list(\fI\%SUBLIST\fP <list> <begin> <length> <out\-var>) \fI\%Search\fP list(\fI\%FIND\fP <list> <value> <out\-var>) \fI\%Modification\fP list(\fI\%APPEND\fP <list> [<element>...]) list(\fI\%FILTER\fP <list> {INCLUDE | EXCLUDE} REGEX <regex>) list(\fI\%INSERT\fP <list> <index> [<element>...]) list(\fI\%POP_BACK\fP <list> [<out\-var>...]) list(\fI\%POP_FRONT\fP <list> [<out\-var>...]) list(\fI\%PREPEND\fP <list> [<element>...]) list(\fI\%REMOVE_ITEM\fP <list> <value>...) list(\fI\%REMOVE_AT\fP <list> <index>...) list(\fI\%REMOVE_DUPLICATES\fP <list>) list(\fI\%TRANSFORM\fP <list> <ACTION> [...]) \fI\%Ordering\fP list(\fI\%REVERSE\fP <list>) list(\fI\%SORT\fP <list> [...]) .ft P .fi .UNINDENT .UNINDENT .SS Introduction .sp The list subcommands \fBAPPEND\fP, \fBINSERT\fP, \fBFILTER\fP, \fBPREPEND\fP, \fBPOP_BACK\fP, \fBPOP_FRONT\fP, \fBREMOVE_AT\fP, \fBREMOVE_ITEM\fP, \fBREMOVE_DUPLICATES\fP, \fBREVERSE\fP and \fBSORT\fP may create new values for the list within the current CMake variable scope. Similar to the \fBset()\fP command, the LIST command creates new variable values in the current scope, even if the list itself is actually defined in a parent scope. To propagate the results of these operations upwards, use \fBset()\fP with \fBPARENT_SCOPE\fP, \fBset()\fP with \fBCACHE INTERNAL\fP, or some other means of value propagation. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 A list in cmake is a \fB;\fP separated group of strings. To create a list the set command can be used. For example, \fBset(var a b c d e)\fP creates a list with \fBa;b;c;d;e\fP, and \fBset(var "a b c d e")\fP creates a string or a list with one item in it. (Note macro arguments are not variables, and therefore cannot be used in LIST commands.) .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 When specifying index values, if \fB<element index>\fP is 0 or greater, it is indexed from the beginning of the list, with 0 representing the first list element. If \fB<element index>\fP is \-1 or lesser, it is indexed from the end of the list, with \-1 representing the last list element. Be careful when counting with negative indices: they do not start from 0. \-0 is equivalent to 0, the first list element. .UNINDENT .UNINDENT .SS Reading .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(LENGTH <list> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Returns the list\(aqs length. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(GET <list> <element index> [<element index> ...] <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Returns the list of elements specified by indices from the list. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(JOIN <list> <glue> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Returns a string joining all list\(aqs elements using the glue string. To join multiple strings, which are not part of a list, use \fBJOIN\fP operator from \fBstring()\fP command. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(SUBLIST <list> <begin> <length> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Returns a sublist of the given list. If \fB<length>\fP is 0, an empty list will be returned. If \fB<length>\fP is \-1 or the list is smaller than \fB<begin>+<length>\fP then the remaining elements of the list starting at \fB<begin>\fP will be returned. .SS Search .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(FIND <list> <value> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Returns the index of the element specified in the list or \-1 if it wasn\(aqt found. .SS Modification .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(APPEND <list> [<element> ...]) .ft P .fi .UNINDENT .UNINDENT .sp Appends elements to the list. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(FILTER <list> <INCLUDE|EXCLUDE> REGEX <regular_expression>) .ft P .fi .UNINDENT .UNINDENT .sp Includes or removes items from the list that match the mode\(aqs pattern. In \fBREGEX\fP mode, items will be matched against the given regular expression. .sp For more information on regular expressions see also the \fBstring()\fP command. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(INSERT <list> <element_index> <element> [<element> ...]) .ft P .fi .UNINDENT .UNINDENT .sp Inserts elements to the list to the specified location. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(POP_BACK <list> [<out\-var>...]) .ft P .fi .UNINDENT .UNINDENT .sp If no variable name is given, removes exactly one element. Otherwise, assign the last element\(aqs value to the given variable and removes it, up to the last variable name given. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(POP_FRONT <list> [<out\-var>...]) .ft P .fi .UNINDENT .UNINDENT .sp If no variable name is given, removes exactly one element. Otherwise, assign the first element\(aqs value to the given variable and removes it, up to the last variable name given. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(PREPEND <list> [<element> ...]) .ft P .fi .UNINDENT .UNINDENT .sp Insert elements to the 0th position in the list. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(REMOVE_ITEM <list> <value> [<value> ...]) .ft P .fi .UNINDENT .UNINDENT .sp Removes the given items from the list. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(REMOVE_AT <list> <index> [<index> ...]) .ft P .fi .UNINDENT .UNINDENT .sp Removes items at given indices from the list. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(REMOVE_DUPLICATES <list>) .ft P .fi .UNINDENT .UNINDENT .sp Removes duplicated items in the list. The relative order of items is preserved, but if duplicates are encountered, only the first instance is preserved. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(TRANSFORM <list> <ACTION> [<SELECTOR>] [OUTPUT_VARIABLE <output variable>]) .ft P .fi .UNINDENT .UNINDENT .sp Transforms the list by applying an action to all or, by specifying a \fB<SELECTOR>\fP, to the selected elements of the list, storing the result in\-place or in the specified output variable. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 The \fBTRANSFORM\fP sub\-command does not change the number of elements in the list. If a \fB<SELECTOR>\fP is specified, only some elements will be changed, the other ones will remain the same as before the transformation. .UNINDENT .UNINDENT .sp \fB<ACTION>\fP specifies the action to apply to the elements of the list. The actions have exactly the same semantics as sub\-commands of the \fBstring()\fP command. \fB<ACTION>\fP must be one of the following: .sp \fBAPPEND\fP, \fBPREPEND\fP: Append, prepend specified value to each element of the list. .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(TRANSFORM <list> <APPEND|PREPEND> <value> ...) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .UNINDENT .sp \fBTOUPPER\fP, \fBTOLOWER\fP: Convert each element of the list to upper, lower characters. .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(TRANSFORM <list> <TOLOWER|TOUPPER> ...) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .UNINDENT .sp \fBSTRIP\fP: Remove leading and trailing spaces from each element of the list. .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(TRANSFORM <list> STRIP ...) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .UNINDENT .sp \fBGENEX_STRIP\fP: Strip any \fBgenerator expressions\fP from each element of the list. .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(TRANSFORM <list> GENEX_STRIP ...) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .UNINDENT .sp \fBREPLACE\fP: Match the regular expression as many times as possible and substitute the replacement expression for the match for each element of the list (Same semantic as \fBREGEX REPLACE\fP from \fBstring()\fP command). .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(TRANSFORM <list> REPLACE <regular_expression> <replace_expression> ...) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .UNINDENT .sp \fB<SELECTOR>\fP determines which elements of the list will be transformed. Only one type of selector can be specified at a time. When given, \fB<SELECTOR>\fP must be one of the following: .sp \fBAT\fP: Specify a list of indexes. .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(TRANSFORM <list> <ACTION> AT <index> [<index> ...] ...) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .UNINDENT .sp \fBFOR\fP: Specify a range with, optionally, an increment used to iterate over the range. .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(TRANSFORM <list> <ACTION> FOR <start> <stop> [<step>] ...) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .UNINDENT .sp \fBREGEX\fP: Specify a regular expression. Only elements matching the regular expression will be transformed. .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(TRANSFORM <list> <ACTION> REGEX <regular_expression> ...) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .UNINDENT .SS Ordering .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(REVERSE <list>) .ft P .fi .UNINDENT .UNINDENT .sp Reverses the contents of the list in\-place. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C list(SORT <list> [COMPARE <compare>] [CASE <case>] [ORDER <order>]) .ft P .fi .UNINDENT .UNINDENT .sp Sorts the list in\-place alphabetically. Use the \fBCOMPARE\fP keyword to select the comparison method for sorting. The \fB<compare>\fP option should be one of: .INDENT 0.0 .IP \(bu 2 \fBSTRING\fP: Sorts a list of strings alphabetically. This is the default behavior if the \fBCOMPARE\fP option is not given. .IP \(bu 2 \fBFILE_BASENAME\fP: Sorts a list of pathnames of files by their basenames. .UNINDENT .sp Use the \fBCASE\fP keyword to select a case sensitive or case insensitive sort mode. The \fB<case>\fP option should be one of: .INDENT 0.0 .IP \(bu 2 \fBSENSITIVE\fP: List items are sorted in a case\-sensitive manner. This is the default behavior if the \fBCASE\fP option is not given. .IP \(bu 2 \fBINSENSITIVE\fP: List items are sorted case insensitively. The order of items which differ only by upper/lowercase is not specified. .UNINDENT .sp To control the sort order, the \fBORDER\fP keyword can be given. The \fB<order>\fP option should be one of: .INDENT 0.0 .IP \(bu 2 \fBASCENDING\fP: Sorts the list in ascending order. This is the default behavior when the \fBORDER\fP option is not given. .IP \(bu 2 \fBDESCENDING\fP: Sorts the list in descending order. .UNINDENT .SS macro .sp Start recording a macro for later invocation as a command .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C macro(<name> [<arg1> ...]) <commands> endmacro() .ft P .fi .UNINDENT .UNINDENT .sp Defines a macro named \fB<name>\fP that takes arguments named \fB<arg1>\fP, ... Commands listed after macro, but before the matching \fBendmacro()\fP, are not executed until the macro is invoked. .sp Per legacy, the \fBendmacro()\fP command admits an optional \fB<name>\fP argument. If used, it must be a verbatim repeat of the argument of the opening \fBmacro\fP command. .sp See the \fBcmake_policy()\fP command documentation for the behavior of policies inside macros. .sp See the \fIMacro vs Function\fP section below for differences between CMake macros and \fBfunctions\fP\&. .SS Invocation .sp The macro invocation is case\-insensitive. A macro defined as .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C macro(foo) <commands> endmacro() .ft P .fi .UNINDENT .UNINDENT .sp can be invoked through any of .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C foo() Foo() FOO() .ft P .fi .UNINDENT .UNINDENT .sp and so on. However, it is strongly recommended to stay with the case chosen in the macro definition. Typically macros use all\-lowercase names. .SS Arguments .sp When a macro is invoked, the commands recorded in the macro are first modified by replacing formal parameters (\fB${arg1}\fP, ...) with the arguments passed, and then invoked as normal commands. .sp In addition to referencing the formal parameters you can reference the values \fB${ARGC}\fP which will be set to the number of arguments passed into the function as well as \fB${ARGV0}\fP, \fB${ARGV1}\fP, \fB${ARGV2}\fP, ... which will have the actual values of the arguments passed in. This facilitates creating macros with optional arguments. .sp Furthermore, \fB${ARGV}\fP holds the list of all arguments given to the macro and \fB${ARGN}\fP holds the list of arguments past the last expected argument. Referencing to \fB${ARGV#}\fP arguments beyond \fB${ARGC}\fP have undefined behavior. Checking that \fB${ARGC}\fP is greater than \fB#\fP is the only way to ensure that \fB${ARGV#}\fP was passed to the function as an extra argument. .SS Macro vs Function .sp The \fBmacro\fP command is very similar to the \fBfunction()\fP command. Nonetheless, there are a few important differences. .sp In a function, \fBARGN\fP, \fBARGC\fP, \fBARGV\fP and \fBARGV0\fP, \fBARGV1\fP, ... are true variables in the usual CMake sense. In a macro, they are not, they are string replacements much like the C preprocessor would do with a macro. This has a number of consequences, as explained in the \fIArgument Caveats\fP section below. .sp Another difference between macros and functions is the control flow. A function is executed by transferring control from the calling statement to the function body. A macro is executed as if the macro body were pasted in place of the calling statement. This has the consequence that a \fBreturn()\fP in a macro body does not just terminate execution of the macro; rather, control is returned from the scope of the macro call. To avoid confusion, it is recommended to avoid \fBreturn()\fP in macros altogether. .SS Argument Caveats .sp Since \fBARGN\fP, \fBARGC\fP, \fBARGV\fP, \fBARGV0\fP etc. are not variables, you will NOT be able to use commands like .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if(ARGV1) # ARGV1 is not a variable if(DEFINED ARGV2) # ARGV2 is not a variable if(ARGC GREATER 2) # ARGC is not a variable foreach(loop_var IN LISTS ARGN) # ARGN is not a variable .ft P .fi .UNINDENT .UNINDENT .sp In the first case, you can use \fBif(${ARGV1})\fP\&. In the second and third case, the proper way to check if an optional variable was passed to the macro is to use \fBif(${ARGC} GREATER 2)\fP\&. In the last case, you can use \fBforeach(loop_var ${ARGN})\fP but this will skip empty arguments. If you need to include them, you can use .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set(list_var "${ARGN}") foreach(loop_var IN LISTS list_var) .ft P .fi .UNINDENT .UNINDENT .sp Note that if you have a variable with the same name in the scope from which the macro is called, using unreferenced names will use the existing variable instead of the arguments. For example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C macro(bar) foreach(arg IN LISTS ARGN) <commands> endforeach() endmacro() function(foo) bar(x y z) endfunction() foo(a b c) .ft P .fi .UNINDENT .UNINDENT .sp Will loop over \fBa;b;c\fP and not over \fBx;y;z\fP as one might have expected. If you want true CMake variables and/or better CMake scope control you should look at the function command. .SS mark_as_advanced .sp Mark cmake cached variables as advanced. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C mark_as_advanced([CLEAR|FORCE] <var1> ...) .ft P .fi .UNINDENT .UNINDENT .sp Sets the advanced/non\-advanced state of the named cached variables. .sp An advanced variable will not be displayed in any of the cmake GUIs unless the \fBshow advanced\fP option is on. In script mode, the advanced/non\-advanced state has no effect. .sp If the keyword \fBCLEAR\fP is given then advanced variables are changed back to unadvanced. If the keyword \fBFORCE\fP is given then the variables are made advanced. If neither \fBFORCE\fP nor \fBCLEAR\fP is specified, new values will be marked as advanced, but if a variable already has an advanced/non\-advanced state, it will not be changed. .SS math .sp Evaluate a mathematical expression. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C math(EXPR <variable> "<expression>" [OUTPUT_FORMAT <format>]) .ft P .fi .UNINDENT .UNINDENT .sp Evaluates a mathematical \fB<expression>\fP and sets \fB<variable>\fP to the resulting value. .sp The mathematical expression must be given as a string (i.e. enclosed in double quotation marks). An example is \fB"5 * (10 + 13)"\fP\&. Supported operators are \fB+\fP, \fB\-\fP, \fB*\fP, \fB/\fP, \fB%\fP, \fB|\fP, \fB&\fP, \fB^\fP, \fB~\fP, \fB<<\fP, \fB>>\fP, and \fB(...)\fP; they have the same meaning as in C code. .sp Hexadecimal numbers are recognized when prefixed with \fB0x\fP, as in C code. .sp The result is formatted according to the option \fBOUTPUT_FORMAT\fP, where \fB<format>\fP is one of .INDENT 0.0 .TP .B \fBHEXADECIMAL\fP Hexadecimal notation as in C code, i. e. starting with "0x". .TP .B \fBDECIMAL\fP Decimal notation. Which is also used if no \fBOUTPUT_FORMAT\fP option is specified. .UNINDENT .sp For example .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C math(EXPR value "100 * 0xA" OUTPUT_FORMAT DECIMAL) # value is set to "1000" math(EXPR value "100 * 0xA" OUTPUT_FORMAT HEXADECIMAL) # value is set to "0x3e8" .ft P .fi .UNINDENT .UNINDENT .SS message .sp Display a message to the user. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C message([<mode>] "message to display" ...) .ft P .fi .UNINDENT .UNINDENT .sp The optional \fB<mode>\fP keyword determines the type of message: .INDENT 0.0 .TP .B \fBFATAL_ERROR\fP CMake Error, stop processing and generation. .TP .B \fBSEND_ERROR\fP CMake Error, continue processing, but skip generation. .TP .B \fBWARNING\fP CMake Warning, continue processing. .TP .B \fBAUTHOR_WARNING\fP CMake Warning (dev), continue processing. .TP .B \fBDEPRECATION\fP CMake Deprecation Error or Warning if variable \fBCMAKE_ERROR_DEPRECATED\fP or \fBCMAKE_WARN_DEPRECATED\fP is enabled, respectively, else no message. .TP .B (none) or \fBNOTICE\fP Important message printed to stderr to attract user\(aqs attention. .TP .B \fBSTATUS\fP The main interesting messages that project users might be interested in. Ideally these should be concise, no more than a single line, but still informative. .TP .B \fBVERBOSE\fP Detailed informational messages intended for project users. These messages should provide additional details that won\(aqt be of interest in most cases, but which may be useful to those building the project when they want deeper insight into what\(aqs happening. .TP .B \fBDEBUG\fP Detailed informational messages intended for developers working on the project itself as opposed to users who just want to build it. These messages will not typically be of interest to other users building the project and will often be closely related to internal implementation details. .TP .B \fBTRACE\fP Fine\-grained messages with very low\-level implementation details. Messages using this log level would normally only be temporary and would expect to be removed before releasing the project, packaging up the files, etc. .UNINDENT .sp The CMake command\-line tool displays \fBSTATUS\fP to \fBTRACE\fP messages on stdout with the message preceded by two hyphens and a space. All other message types are sent to stderr and are not prefixed with hyphens. The \fBCMake GUI\fP displays all messages in its log area. The \fBcurses interface\fP shows \fBSTATUS\fP to \fBTRACE\fP messages one at a time on a status line and other messages in an interactive pop\-up box. The \fB\-\-loglevel\fP command\-line option to each of these tools can be used to control which messages will be shown. .sp CMake Warning and Error message text displays using a simple markup language. Non\-indented text is formatted in line\-wrapped paragraphs delimited by newlines. Indented text is considered pre\-formatted. .SS option .sp Provide an option that the user can optionally select. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C option(<variable> "<help_text>" [value]) .ft P .fi .UNINDENT .UNINDENT .sp Provides an option for the user to select as \fBON\fP or \fBOFF\fP\&. If no initial \fB<value>\fP is provided, \fBOFF\fP is used. If \fB<variable>\fP is already set as a normal variable then the command does nothing (see policy \fBCMP0077\fP). .sp If you have options that depend on the values of other options, see the module help for \fBCMakeDependentOption\fP\&. .SS return .sp Return from a file, directory or function. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C return() .ft P .fi .UNINDENT .UNINDENT .sp Returns from a file, directory or function. When this command is encountered in an included file (via \fBinclude()\fP or \fBfind_package()\fP), it causes processing of the current file to stop and control is returned to the including file. If it is encountered in a file which is not included by another file, e.g. a \fBCMakeLists.txt\fP, control is returned to the parent directory if there is one. If return is called in a function, control is returned to the caller of the function. .sp Note that a \fBmacro\fP, unlike a \fBfunction\fP, is expanded in place and therefore cannot handle \fBreturn()\fP\&. .SS separate_arguments .sp Parse command\-line arguments into a semicolon\-separated list. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C separate_arguments(<variable> <mode> <args>) .ft P .fi .UNINDENT .UNINDENT .sp Parses a space\-separated string \fB<args>\fP into a list of items, and stores this list in semicolon\-separated standard form in \fB<variable>\fP\&. .sp This function is intended for parsing command\-line arguments. The entire command line must be passed as one string in the argument \fB<args>\fP\&. .sp The exact parsing rules depend on the operating system. They are specified by the \fB<mode>\fP argument which must be one of the following keywords: .INDENT 0.0 .TP .B \fBUNIX_COMMAND\fP Arguments are separated by by unquoted whitespace. Both single\-quote and double\-quote pairs are respected. A backslash escapes the next literal character (\fB\e"\fP is \fB"\fP); there are no special escapes (\fB\en\fP is just \fBn\fP). .TP .B \fBWINDOWS_COMMAND\fP A Windows command\-line is parsed using the same syntax the runtime library uses to construct argv at startup. It separates arguments by whitespace that is not double\-quoted. Backslashes are literal unless they precede double\-quotes. See the MSDN article \fI\%Parsing C Command-Line Arguments\fP for details. .TP .B \fBNATIVE_COMMAND\fP Proceeds as in \fBWINDOWS_COMMAND\fP mode if the host system is Windows. Otherwise proceeds as in \fBUNIX_COMMAND\fP mode. .UNINDENT .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C separate_arguments(<var>) .ft P .fi .UNINDENT .UNINDENT .sp Convert the value of \fB<var>\fP to a semi\-colon separated list. All spaces are replaced with \(aq;\(aq. This helps with generating command lines. .SS set .sp Set a normal, cache, or environment variable to a given value. See the \fIcmake\-language(7) variables\fP documentation for the scopes and interaction of normal variables and cache entries. .sp Signatures of this command that specify a \fB<value>...\fP placeholder expect zero or more arguments. Multiple arguments will be joined as a \fIsemicolon\-separated list\fP to form the actual variable value to be set. Zero arguments will cause normal variables to be unset. See the \fBunset()\fP command to unset variables explicitly. .SS Set Normal Variable .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set(<variable> <value>... [PARENT_SCOPE]) .ft P .fi .UNINDENT .UNINDENT .sp Sets the given \fB<variable>\fP in the current function or directory scope. .sp If the \fBPARENT_SCOPE\fP option is given the variable will be set in the scope above the current scope. Each new directory or function creates a new scope. This command will set the value of a variable into the parent directory or calling function (whichever is applicable to the case at hand). The previous state of the variable\(aqs value stays the same in the current scope (e.g., if it was undefined before, it is still undefined and if it had a value, it is still that value). .SS Set Cache Entry .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set(<variable> <value>... CACHE <type> <docstring> [FORCE]) .ft P .fi .UNINDENT .UNINDENT .sp Sets the given cache \fB<variable>\fP (cache entry). Since cache entries are meant to provide user\-settable values this does not overwrite existing cache entries by default. Use the \fBFORCE\fP option to overwrite existing entries. .sp The \fB<type>\fP must be specified as one of: .INDENT 0.0 .TP .B \fBBOOL\fP Boolean \fBON/OFF\fP value. \fBcmake\-gui(1)\fP offers a checkbox. .TP .B \fBFILEPATH\fP Path to a file on disk. \fBcmake\-gui(1)\fP offers a file dialog. .TP .B \fBPATH\fP Path to a directory on disk. \fBcmake\-gui(1)\fP offers a file dialog. .TP .B \fBSTRING\fP A line of text. \fBcmake\-gui(1)\fP offers a text field or a drop\-down selection if the \fBSTRINGS\fP cache entry property is set. .TP .B \fBINTERNAL\fP A line of text. \fBcmake\-gui(1)\fP does not show internal entries. They may be used to store variables persistently across runs. Use of this type implies \fBFORCE\fP\&. .UNINDENT .sp The \fB<docstring>\fP must be specified as a line of text providing a quick summary of the option for presentation to \fBcmake\-gui(1)\fP users. .sp If the cache entry does not exist prior to the call or the \fBFORCE\fP option is given then the cache entry will be set to the given value. Furthermore, any normal variable binding in the current scope will be removed to expose the newly cached value to any immediately following evaluation. .sp It is possible for the cache entry to exist prior to the call but have no type set if it was created on the \fBcmake(1)\fP command line by a user through the \fB\-D<var>=<value>\fP option without specifying a type. In this case the \fBset\fP command will add the type. Furthermore, if the \fB<type>\fP is \fBPATH\fP or \fBFILEPATH\fP and the \fB<value>\fP provided on the command line is a relative path, then the \fBset\fP command will treat the path as relative to the current working directory and convert it to an absolute path. .SS Set Environment Variable .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set(ENV{<variable>} [<value>]) .ft P .fi .UNINDENT .UNINDENT .sp Sets an \fBEnvironment Variable\fP to the given value. Subsequent calls of \fB$ENV{<variable>}\fP will return this new value. .sp This command affects only the current CMake process, not the process from which CMake was called, nor the system environment at large, nor the environment of subsequent build or test processes. .sp If no argument is given after \fBENV{<variable>}\fP or if \fB<value>\fP is an empty string, then this command will clear any existing value of the environment variable. .sp Arguments after \fB<value>\fP are ignored. If extra arguments are found, then an author warning is issued. .SS set_directory_properties .sp Set properties of the current directory and subdirectories. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set_directory_properties(PROPERTIES prop1 value1 [prop2 value2] ...) .ft P .fi .UNINDENT .UNINDENT .sp Sets properties of the current directory and its subdirectories in key\-value pairs. .sp See also the \fBset_property(DIRECTORY)\fP command. .sp See \fIDirectory Properties\fP for the list of properties known to CMake and their individual documentation for the behavior of each property. .SS set_property .sp Set a named property in a given scope. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set_property(<GLOBAL | DIRECTORY [<dir>] | TARGET [<target1> ...] | SOURCE [<src1> ...] | INSTALL [<file1> ...] | TEST [<test1> ...] | CACHE [<entry1> ...] > [APPEND] [APPEND_STRING] PROPERTY <name> [value1 ...]) .ft P .fi .UNINDENT .UNINDENT .sp Sets one property on zero or more objects of a scope. .sp The first argument determines the scope in which the property is set. It must be one of the following: .INDENT 0.0 .TP .B \fBGLOBAL\fP Scope is unique and does not accept a name. .TP .B \fBDIRECTORY\fP Scope defaults to the current directory but another directory (already processed by CMake) may be named by full or relative path. See also the \fBset_directory_properties()\fP command. .TP .B \fBTARGET\fP Scope may name zero or more existing targets. See also the \fBset_target_properties()\fP command. .TP .B \fBSOURCE\fP Scope may name zero or more source files. Note that source file properties are visible only to targets added in the same directory (\fBCMakeLists.txt\fP). See also the \fBset_source_files_properties()\fP command. .TP .B \fBINSTALL\fP Scope may name zero or more installed file paths. These are made available to CPack to influence deployment. .sp Both the property key and value may use generator expressions. Specific properties may apply to installed files and/or directories. .sp Path components have to be separated by forward slashes, must be normalized and are case sensitive. .sp To reference the installation prefix itself with a relative path use \fB\&.\fP\&. .sp Currently installed file properties are only defined for the WIX generator where the given paths are relative to the installation prefix. .TP .B \fBTEST\fP Scope may name zero or more existing tests. See also the \fBset_tests_properties()\fP command. .TP .B \fBCACHE\fP Scope must name zero or more cache existing entries. .UNINDENT .sp The required \fBPROPERTY\fP option is immediately followed by the name of the property to set. Remaining arguments are used to compose the property value in the form of a semicolon\-separated list. .sp If the \fBAPPEND\fP option is given the list is appended to any existing property value. If the \fBAPPEND_STRING\fP option is given the string is appended to any existing property value as string, i.e. it results in a longer string and not a list of strings. When using \fBAPPEND\fP or \fBAPPEND_STRING\fP with a property defined to support \fBINHERITED\fP behavior (see \fBdefine_property()\fP), no inheriting occurs when finding the initial value to append to. If the property is not already directly set in the nominated scope, the command will behave as though \fBAPPEND\fP or \fBAPPEND_STRING\fP had not been given. .sp See the \fBcmake\-properties(7)\fP manual for a list of properties in each scope. .SS site_name .sp Set the given variable to the name of the computer. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C site_name(variable) .ft P .fi .UNINDENT .UNINDENT .SS string .sp String operations. .SS Synopsis .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C \fI\%Search and Replace\fP string(\fI\%FIND\fP <string> <substring> <out\-var> [...]) string(\fI\%REPLACE\fP <match\-string> <replace\-string> <out\-var> <input>...) \fI\%Regular Expressions\fP string(\fI\%REGEX MATCH\fP <match\-regex> <out\-var> <input>...) string(\fI\%REGEX MATCHALL\fP <match\-regex> <out\-var> <input>...) string(\fI\%REGEX REPLACE\fP <match\-regex> <replace\-expr> <out\-var> <input>...) \fI\%Manipulation\fP string(\fI\%APPEND\fP <string\-var> [<input>...]) string(\fI\%PREPEND\fP <string\-var> [<input>...]) string(\fI\%CONCAT\fP <out\-var> [<input>...]) string(\fI\%JOIN\fP <glue> <out\-var> [<input>...]) string(\fI\%TOLOWER\fP <string1> <out\-var>) string(\fI\%TOUPPER\fP <string1> <out\-var>) string(\fI\%LENGTH\fP <string> <out\-var>) string(\fI\%SUBSTRING\fP <string> <begin> <length> <out\-var>) string(\fI\%STRIP\fP <string> <out\-var>) string(\fI\%GENEX_STRIP\fP <string> <out\-var>) string(\fI\%REPEAT\fP <string> <count> <out\-var>) \fI\%Comparison\fP string(\fI\%COMPARE\fP <op> <string1> <string2> <out\-var>) \fI\%Hashing\fP string(\fI\%<HASH>\fP <out\-var> <input>) \fI\%Generation\fP string(\fI\%ASCII\fP <number>... <out\-var>) string(\fI\%CONFIGURE\fP <string1> <out\-var> [...]) string(\fI\%MAKE_C_IDENTIFIER\fP <string> <out\-var>) string(\fI\%RANDOM\fP [<option>...] <out\-var>) string(\fI\%TIMESTAMP\fP <out\-var> [<format string>] [UTC]) string(\fI\%UUID\fP <out\-var> ...) .ft P .fi .UNINDENT .UNINDENT .SS Search and Replace .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(FIND <string> <substring> <output variable> [REVERSE]) .ft P .fi .UNINDENT .UNINDENT .sp Return the position where the given substring was found in the supplied string. If the \fBREVERSE\fP flag was used, the command will search for the position of the last occurrence of the specified substring. If the substring is not found, a position of \-1 is returned. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(REPLACE <match_string> <replace_string> <output variable> <input> [<input>...]) .ft P .fi .UNINDENT .UNINDENT .sp Replace all occurrences of \fBmatch_string\fP in the input with \fBreplace_string\fP and store the result in the output. .SS Regular Expressions .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(REGEX MATCH <regular_expression> <output variable> <input> [<input>...]) .ft P .fi .UNINDENT .UNINDENT .sp Match the regular expression once and store the match in the output variable. All \fB<input>\fP arguments are concatenated before matching. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(REGEX MATCHALL <regular_expression> <output variable> <input> [<input>...]) .ft P .fi .UNINDENT .UNINDENT .sp Match the regular expression as many times as possible and store the matches in the output variable as a list. All \fB<input>\fP arguments are concatenated before matching. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(REGEX REPLACE <regular_expression> <replace_expression> <output variable> <input> [<input>...]) .ft P .fi .UNINDENT .UNINDENT .sp Match the regular expression as many times as possible and substitute the replacement expression for the match in the output. All \fB<input>\fP arguments are concatenated before matching. .sp The replace expression may refer to paren\-delimited subexpressions of the match using \fB\e1\fP, \fB\e2\fP, ..., \fB\e9\fP\&. Note that two backslashes (\fB\e\e1\fP) are required in CMake code to get a backslash through argument parsing. .SS Regex Specification .sp The following characters have special meaning in regular expressions: .INDENT 0.0 .TP .B \fB^\fP Matches at beginning of input .TP .B \fB$\fP Matches at end of input .TP .B \fB\&.\fP Matches any single character .TP .B \fB\e<char>\fP Matches the single character specified by \fB<char>\fP\&. Use this to match special regex characters, e.g. \fB\e.\fP for a literal \fB\&.\fP or \fB\e\e\fP for a literal backslash \fB\e\fP\&. Escaping a non\-special character is unnecessary but allowed, e.g. \fB\ea\fP matches \fBa\fP\&. .TP .B \fB[ ]\fP Matches any character(s) inside the brackets .TP .B \fB[^ ]\fP Matches any character(s) not inside the brackets .TP .B \fB\-\fP Inside brackets, specifies an inclusive range between characters on either side e.g. \fB[a\-f]\fP is \fB[abcdef]\fP To match a literal \fB\-\fP using brackets, make it the first or the last character e.g. \fB[+*/\-]\fP matches basic mathematical operators. .TP .B \fB*\fP Matches preceding pattern zero or more times .TP .B \fB+\fP Matches preceding pattern one or more times .TP .B \fB?\fP Matches preceding pattern zero or once only .TP .B \fB|\fP Matches a pattern on either side of the \fB|\fP .TP .B \fB()\fP Saves a matched subexpression, which can be referenced in the \fBREGEX REPLACE\fP operation. Additionally it is saved by all regular expression\-related commands, including e.g. \fBif(MATCHES)\fP, in the variables \fBCMAKE_MATCH_<n>\fP for \fB<n>\fP 0..9. .UNINDENT .sp \fB*\fP, \fB+\fP and \fB?\fP have higher precedence than concatenation. \fB|\fP has lower precedence than concatenation. This means that the regular expression \fB^ab+d$\fP matches \fBabbd\fP but not \fBababd\fP, and the regular expression \fB^(ab|cd)$\fP matches \fBab\fP but not \fBabd\fP\&. .sp CMake language \fIEscape Sequences\fP such as \fB\et\fP, \fB\er\fP, \fB\en\fP, and \fB\e\e\fP may be used to construct literal tabs, carriage returns, newlines, and backslashes (respectively) to pass in a regex. For example: .INDENT 0.0 .IP \(bu 2 The quoted argument \fB"[ \et\er\en]"\fP specifies a regex that matches any single whitespace character. .IP \(bu 2 The quoted argument \fB"[/\e\e]"\fP specifies a regex that matches a single forward slash \fB/\fP or backslash \fB\e\fP\&. .IP \(bu 2 The quoted argument \fB"[A\-Za\-z0\-9_]"\fP specifies a regex that matches any single "word" character in the C locale. .IP \(bu 2 The quoted argument \fB"\e\e(\e\ea\e\e+b\e\e)"\fP specifies a regex that matches the exact string \fB(a+b)\fP\&. Each \fB\e\e\fP is parsed in a quoted argument as just \fB\e\fP, so the regex itself is actually \fB\e(\ea\e+\eb\e)\fP\&. This can alternatively be specified in a \fIbracket argument\fP without having to escape the backslashes, e.g. \fB[[\e(\ea\e+\eb\e)]]\fP\&. .UNINDENT .SS Manipulation .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(APPEND <string variable> [<input>...]) .ft P .fi .UNINDENT .UNINDENT .sp Append all the input arguments to the string. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(PREPEND <string variable> [<input>...]) .ft P .fi .UNINDENT .UNINDENT .sp Prepend all the input arguments to the string. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(CONCAT <output variable> [<input>...]) .ft P .fi .UNINDENT .UNINDENT .sp Concatenate all the input arguments together and store the result in the named output variable. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(JOIN <glue> <output variable> [<input>...]) .ft P .fi .UNINDENT .UNINDENT .sp Join all the input arguments together using the glue string and store the result in the named output variable. .sp To join list\(aqs elements, use preferably the \fBJOIN\fP operator from \fBlist()\fP command. This allows for the elements to have special characters like \fB;\fP in them. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(TOLOWER <string1> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Convert string to lower characters. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(TOUPPER <string1> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Convert string to upper characters. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(LENGTH <string> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Store in an output variable a given string\(aqs length. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(SUBSTRING <string> <begin> <length> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Store in an output variable a substring of a given string. If length is \fB\-1\fP the remainder of the string starting at begin will be returned. If string is shorter than length then end of string is used instead. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 CMake 3.1 and below reported an error if length pointed past the end of string. .UNINDENT .UNINDENT .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(STRIP <string> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Store in an output variable a substring of a given string with leading and trailing spaces removed. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(GENEX_STRIP <input string> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Strip any \fBgenerator expressions\fP from the \fBinput string\fP and store the result in the \fBoutput variable\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(REPEAT <input string> <count> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Produce the output string as repetion of \fBinput string\fP \fBcount\fP times. .SS Comparison .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(COMPARE LESS <string1> <string2> <output variable>) string(COMPARE GREATER <string1> <string2> <output variable>) string(COMPARE EQUAL <string1> <string2> <output variable>) string(COMPARE NOTEQUAL <string1> <string2> <output variable>) string(COMPARE LESS_EQUAL <string1> <string2> <output variable>) string(COMPARE GREATER_EQUAL <string1> <string2> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Compare the strings and store true or false in the output variable. .SS Hashing .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(<HASH> <output variable> <input>) .ft P .fi .UNINDENT .UNINDENT .sp Compute a cryptographic hash of the input string. The supported \fB<HASH>\fP algorithm names are: .INDENT 0.0 .TP .B \fBMD5\fP Message\-Digest Algorithm 5, RFC 1321. .TP .B \fBSHA1\fP US Secure Hash Algorithm 1, RFC 3174. .TP .B \fBSHA224\fP US Secure Hash Algorithms, RFC 4634. .TP .B \fBSHA256\fP US Secure Hash Algorithms, RFC 4634. .TP .B \fBSHA384\fP US Secure Hash Algorithms, RFC 4634. .TP .B \fBSHA512\fP US Secure Hash Algorithms, RFC 4634. .TP .B \fBSHA3_224\fP Keccak SHA\-3. .TP .B \fBSHA3_256\fP Keccak SHA\-3. .TP .B \fBSHA3_384\fP Keccak SHA\-3. .TP .B \fBSHA3_512\fP Keccak SHA\-3. .UNINDENT .SS Generation .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(ASCII <number> [<number> ...] <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Convert all numbers into corresponding ASCII characters. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(CONFIGURE <string1> <output variable> [@ONLY] [ESCAPE_QUOTES]) .ft P .fi .UNINDENT .UNINDENT .sp Transform a string like \fBconfigure_file()\fP transforms a file. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(MAKE_C_IDENTIFIER <input string> <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Convert each non\-alphanumeric character in the \fB<input string>\fP to an underscore and store the result in the \fB<output variable>\fP\&. If the first character of the string is a digit, an underscore will also be prepended to the result. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(RANDOM [LENGTH <length>] [ALPHABET <alphabet>] [RANDOM_SEED <seed>] <output variable>) .ft P .fi .UNINDENT .UNINDENT .sp Return a random string of given length consisting of characters from the given alphabet. Default length is 5 characters and default alphabet is all numbers and upper and lower case letters. If an integer \fBRANDOM_SEED\fP is given, its value will be used to seed the random number generator. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(TIMESTAMP <output variable> [<format string>] [UTC]) .ft P .fi .UNINDENT .UNINDENT .sp Write a string representation of the current date and/or time to the output variable. .sp Should the command be unable to obtain a timestamp the output variable will be set to the empty string "". .sp The optional \fBUTC\fP flag requests the current date/time representation to be in Coordinated Universal Time (UTC) rather than local time. .sp The optional \fB<format string>\fP may contain the following format specifiers: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C %% A literal percent sign (%). %d The day of the current month (01\-31). %H The hour on a 24\-hour clock (00\-23). %I The hour on a 12\-hour clock (01\-12). %j The day of the current year (001\-366). %m The month of the current year (01\-12). %b Abbreviated month name (e.g. Oct). %B Full month name (e.g. October). %M The minute of the current hour (00\-59). %s Seconds since midnight (UTC) 1\-Jan\-1970 (UNIX time). %S The second of the current minute. 60 represents a leap second. (00\-60) %U The week number of the current year (00\-53). %w The day of the current week. 0 is Sunday. (0\-6) %a Abbreviated weekday name (e.g. Fri). %A Full weekday name (e.g. Friday). %y The last two digits of the current year (00\-99) %Y The current year. .ft P .fi .UNINDENT .UNINDENT .sp Unknown format specifiers will be ignored and copied to the output as\-is. .sp If no explicit \fB<format string>\fP is given it will default to: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C %Y\-%m\-%dT%H:%M:%S for local time. %Y\-%m\-%dT%H:%M:%SZ for UTC. .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 If the \fBSOURCE_DATE_EPOCH\fP environment variable is set, its value will be used instead of the current time. See \fI\%https://reproducible-builds.org/specs/source-date-epoch/\fP for details. .UNINDENT .UNINDENT .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C string(UUID <output variable> NAMESPACE <namespace> NAME <name> TYPE <MD5|SHA1> [UPPER]) .ft P .fi .UNINDENT .UNINDENT .sp Create a universally unique identifier (aka GUID) as per RFC4122 based on the hash of the combined values of \fB<namespace>\fP (which itself has to be a valid UUID) and \fB<name>\fP\&. The hash algorithm can be either \fBMD5\fP (Version 3 UUID) or \fBSHA1\fP (Version 5 UUID). A UUID has the format \fBxxxxxxxx\-xxxx\-xxxx\-xxxx\-xxxxxxxxxxxx\fP where each \fIx\fP represents a lower case hexadecimal character. Where required an uppercase representation can be requested with the optional \fBUPPER\fP flag. .SS unset .sp Unset a variable, cache variable, or environment variable. .SS Unset Normal Variable or Cache Entry .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C unset(<variable> [CACHE | PARENT_SCOPE]) .ft P .fi .UNINDENT .UNINDENT .sp Removes a normal variable from the current scope, causing it to become undefined. If \fBCACHE\fP is present, then a cache variable is removed instead of a normal variable. Note that when evaluating \fIVariable References\fP of the form \fB${VAR}\fP, CMake first searches for a normal variable with that name. If no such normal variable exists, CMake will then search for a cache entry with that name. Because of this unsetting a normal variable can expose a cache variable that was previously hidden. To force a variable reference of the form \fB${VAR}\fP to return an empty string, use \fBset(<variable> "")\fP, which clears the normal variable but leaves it defined. .sp If \fBPARENT_SCOPE\fP is present then the variable is removed from the scope above the current scope. See the same option in the \fBset()\fP command for further details. .SS Unset Environment Variable .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C unset(ENV{<variable>}) .ft P .fi .UNINDENT .UNINDENT .sp Removes \fB<variable>\fP from the currently available \fBEnvironment Variables\fP\&. Subsequent calls of \fB$ENV{<variable>}\fP will return the empty string. .sp This command affects only the current CMake process, not the process from which CMake was called, nor the system environment at large, nor the environment of subsequent build or test processes. .SS variable_watch .sp Watch the CMake variable for change. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C variable_watch(<variable> [<command>]) .ft P .fi .UNINDENT .UNINDENT .sp If the specified \fB<variable>\fP changes, a message will be printed to inform about the change. .sp Additionally, if \fB<command>\fP is given, this command will be executed. The command will receive the following arguments: \fBCOMMAND(<variable> <access> <value> <current_list_file> <stack>)\fP .SS while .sp Evaluate a group of commands while a condition is true .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C while(<condition>) <commands> endwhile() .ft P .fi .UNINDENT .UNINDENT .sp All commands between while and the matching \fBendwhile()\fP are recorded without being invoked. Once the \fBendwhile()\fP is evaluated, the recorded list of commands is invoked as long as the \fB<condition>\fP is true. .sp The \fB<condition>\fP has the same syntax and is evaluated using the same logic as described at length for the \fBif()\fP command. .sp The commands \fBbreak()\fP and \fBcontinue()\fP provide means to escape from the normal control flow. .sp Per legacy, the \fBendwhile()\fP command admits an optional \fB<condition>\fP argument. If used, it must be a verbatim repeat of the argument of the opening \fBwhile\fP command. .SH PROJECT COMMANDS .sp These commands are available only in CMake projects. .SS add_compile_definitions .sp Add preprocessor definitions to the compilation of source files. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_compile_definitions(<definition> ...) .ft P .fi .UNINDENT .UNINDENT .sp Adds preprocessor definitions to the compiler command line for targets in the current directory and below (whether added before or after this command is invoked). See documentation of the \fBdirectory\fP and \fBtarget\fP \fBCOMPILE_DEFINITIONS\fP properties. .sp Definitions are specified using the syntax \fBVAR\fP or \fBVAR=value\fP\&. Function\-style definitions are not supported. CMake will automatically escape the value correctly for the native build system (note that CMake language syntax may require escapes to specify some values). .sp Arguments to \fBadd_compile_definitions\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .SS add_compile_options .sp Add options to the compilation of source files. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_compile_options(<option> ...) .ft P .fi .UNINDENT .UNINDENT .sp Adds options to the \fBCOMPILE_OPTIONS\fP directory property. These options are used when compiling targets from the current directory and below. .SS Arguments .sp Arguments to \fBadd_compile_options\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp The final set of compile or link options used for a target is constructed by accumulating options from the current target and the usage requirements of it dependencies. The set of options is de\-duplicated to avoid repetition. While beneficial for individual options, the de\-duplication step can break up option groups. For example, \fB\-D A \-D B\fP becomes \fB\-D A B\fP\&. One may specify a group of options using shell\-like quoting along with a \fBSHELL:\fP prefix. The \fBSHELL:\fP prefix is dropped and the rest of the option string is parsed using the \fBseparate_arguments()\fP \fBUNIX_COMMAND\fP mode. For example, \fB"SHELL:\-D A" "SHELL:\-D B"\fP becomes \fB\-D A \-D B\fP\&. .SS Example .sp Since different compilers support different options, a typical use of this command is in a compiler\-specific conditional clause: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if (MSVC) # warning level 4 and all warnings as errors add_compile_options(/W4 /WX) else() # lots of warnings and all warnings as errors add_compile_options(\-Wall \-Wextra \-pedantic \-Werror) endif() .ft P .fi .UNINDENT .UNINDENT .SS See Also .sp This command can be used to add any options. However, for adding preprocessor definitions and include directories it is recommended to use the more specific commands \fBadd_compile_definitions()\fP and \fBinclude_directories()\fP\&. .sp The command \fBtarget_compile_options()\fP adds target\-specific options. .SS add_custom_command .sp Add a custom build rule to the generated build system. .sp There are two main signatures for \fBadd_custom_command\fP\&. .SS Generating Files .sp The first signature is for adding a custom command to produce an output: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_custom_command(OUTPUT output1 [output2 ...] COMMAND command1 [ARGS] [args1...] [COMMAND command2 [ARGS] [args2...] ...] [MAIN_DEPENDENCY depend] [DEPENDS [depends...]] [BYPRODUCTS [files...]] [IMPLICIT_DEPENDS <lang1> depend1 [<lang2> depend2] ...] [WORKING_DIRECTORY dir] [COMMENT comment] [DEPFILE depfile] [JOB_POOL job_pool] [VERBATIM] [APPEND] [USES_TERMINAL] [COMMAND_EXPAND_LISTS]) .ft P .fi .UNINDENT .UNINDENT .sp This defines a command to generate specified \fBOUTPUT\fP file(s). A target created in the same directory (\fBCMakeLists.txt\fP file) that specifies any output of the custom command as a source file is given a rule to generate the file using the command at build time. Do not list the output in more than one independent target that may build in parallel or the two instances of the rule may conflict (instead use the \fBadd_custom_target()\fP command to drive the command and make the other targets depend on that one). In makefile terms this creates a new target in the following form: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C OUTPUT: MAIN_DEPENDENCY DEPENDS COMMAND .ft P .fi .UNINDENT .UNINDENT .sp The options are: .INDENT 0.0 .TP .B \fBAPPEND\fP Append the \fBCOMMAND\fP and \fBDEPENDS\fP option values to the custom command for the first output specified. There must have already been a previous call to this command with the same output. The \fBCOMMENT\fP, \fBMAIN_DEPENDENCY\fP, and \fBWORKING_DIRECTORY\fP options are currently ignored when APPEND is given, but may be used in the future. .TP .B \fBBYPRODUCTS\fP Specify the files the command is expected to produce but whose modification time may or may not be newer than the dependencies. If a byproduct name is a relative path it will be interpreted relative to the build tree directory corresponding to the current source directory. Each byproduct file will be marked with the \fBGENERATED\fP source file property automatically. .sp Explicit specification of byproducts is supported by the \fBNinja\fP generator to tell the \fBninja\fP build tool how to regenerate byproducts when they are missing. It is also useful when other build rules (e.g. custom commands) depend on the byproducts. Ninja requires a build rule for any generated file on which another rule depends even if there are order\-only dependencies to ensure the byproducts will be available before their dependents build. .sp The \fBBYPRODUCTS\fP option is ignored on non\-Ninja generators except to mark byproducts \fBGENERATED\fP\&. .TP .B \fBCOMMAND\fP Specify the command\-line(s) to execute at build time. If more than one \fBCOMMAND\fP is specified they will be executed in order, but \fInot\fP necessarily composed into a stateful shell or batch script. (To run a full script, use the \fBconfigure_file()\fP command or the \fBfile(GENERATE)\fP command to create it, and then specify a \fBCOMMAND\fP to launch it.) The optional \fBARGS\fP argument is for backward compatibility and will be ignored. .sp If \fBCOMMAND\fP specifies an executable target name (created by the \fBadd_executable()\fP command) it will automatically be replaced by the location of the executable created at build time. If set, the \fBCROSSCOMPILING_EMULATOR\fP executable target property will also be prepended to the command to allow the executable to run on the host. (Use the \fBTARGET_FILE\fP \fBgenerator expression\fP to reference an executable later in the command line.) Additionally a target\-level dependency will be added so that the executable target will be built before any target using this custom command. However this does NOT add a file\-level dependency that would cause the custom command to re\-run whenever the executable is recompiled. .sp Arguments to \fBCOMMAND\fP may use \fBgenerator expressions\fP\&. References to target names in generator expressions imply target\-level dependencies, but NOT file\-level dependencies. List target names with the \fBDEPENDS\fP option to add file\-level dependencies. .TP .B \fBCOMMENT\fP Display the given message before the commands are executed at build time. .TP .B \fBDEPENDS\fP Specify files on which the command depends. If any dependency is an \fBOUTPUT\fP of another custom command in the same directory (\fBCMakeLists.txt\fP file) CMake automatically brings the other custom command into the target in which this command is built. If \fBDEPENDS\fP is not specified the command will run whenever the \fBOUTPUT\fP is missing; if the command does not actually create the \fBOUTPUT\fP then the rule will always run. If \fBDEPENDS\fP specifies any target (created by the \fBadd_custom_target()\fP, \fBadd_executable()\fP, or \fBadd_library()\fP command) a target\-level dependency is created to make sure the target is built before any target using this custom command. Additionally, if the target is an executable or library a file\-level dependency is created to cause the custom command to re\-run whenever the target is recompiled. .sp Arguments to \fBDEPENDS\fP may use \fBgenerator expressions\fP\&. .TP .B \fBCOMMAND_EXPAND_LISTS\fP Lists in \fBCOMMAND\fP arguments will be expanded, including those created with \fBgenerator expressions\fP, allowing \fBCOMMAND\fP arguments such as \fB${CC} "\-I$<JOIN:$<TARGET_PROPERTY:foo,INCLUDE_DIRECTORIES>,;\-I>" foo.cc\fP to be properly expanded. .TP .B \fBIMPLICIT_DEPENDS\fP Request scanning of implicit dependencies of an input file. The language given specifies the programming language whose corresponding dependency scanner should be used. Currently only \fBC\fP and \fBCXX\fP language scanners are supported. The language has to be specified for every file in the \fBIMPLICIT_DEPENDS\fP list. Dependencies discovered from the scanning are added to those of the custom command at build time. Note that the \fBIMPLICIT_DEPENDS\fP option is currently supported only for Makefile generators and will be ignored by other generators. .TP .B \fBJOB_POOL\fP Specify a \fBpool\fP for the \fBNinja\fP generator. Incompatible with \fBUSES_TERMINAL\fP, which implies the \fBconsole\fP pool. Using a pool that is not defined by \fBJOB_POOLS\fP causes an error by ninja at build time. .TP .B \fBMAIN_DEPENDENCY\fP Specify the primary input source file to the command. This is treated just like any value given to the \fBDEPENDS\fP option but also suggests to Visual Studio generators where to hang the custom command. Each source file may have at most one command specifying it as its main dependency. A compile command (i.e. for a library or an executable) counts as an implicit main dependency which gets silently overwritten by a custom command specification. .TP .B \fBOUTPUT\fP Specify the output files the command is expected to produce. If an output name is a relative path it will be interpreted relative to the build tree directory corresponding to the current source directory. Each output file will be marked with the \fBGENERATED\fP source file property automatically. If the output of the custom command is not actually created as a file on disk it should be marked with the \fBSYMBOLIC\fP source file property. .TP .B \fBUSES_TERMINAL\fP The command will be given direct access to the terminal if possible. With the \fBNinja\fP generator, this places the command in the \fBconsole\fP \fBpool\fP\&. .TP .B \fBVERBATIM\fP All arguments to the commands will be escaped properly for the build tool so that the invoked command receives each argument unchanged. Note that one level of escapes is still used by the CMake language processor before add_custom_command even sees the arguments. Use of \fBVERBATIM\fP is recommended as it enables correct behavior. When \fBVERBATIM\fP is not given the behavior is platform specific because there is no protection of tool\-specific special characters. .TP .B \fBWORKING_DIRECTORY\fP Execute the command with the given current working directory. If it is a relative path it will be interpreted relative to the build tree directory corresponding to the current source directory. .sp Arguments to \fBWORKING_DIRECTORY\fP may use \fBgenerator expressions\fP\&. .TP .B \fBDEPFILE\fP Specify a \fB\&.d\fP depfile for the \fBNinja\fP generator. A \fB\&.d\fP file holds dependencies usually emitted by the custom command itself. Using \fBDEPFILE\fP with other generators than Ninja is an error. .UNINDENT .SS Build Events .sp The second signature adds a custom command to a target such as a library or executable. This is useful for performing an operation before or after building the target. The command becomes part of the target and will only execute when the target itself is built. If the target is already built, the command will not execute. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_custom_command(TARGET <target> PRE_BUILD | PRE_LINK | POST_BUILD COMMAND command1 [ARGS] [args1...] [COMMAND command2 [ARGS] [args2...] ...] [BYPRODUCTS [files...]] [WORKING_DIRECTORY dir] [COMMENT comment] [VERBATIM] [USES_TERMINAL]) .ft P .fi .UNINDENT .UNINDENT .sp This defines a new command that will be associated with building the specified \fB<target>\fP\&. The \fB<target>\fP must be defined in the current directory; targets defined in other directories may not be specified. .sp When the command will happen is determined by which of the following is specified: .INDENT 0.0 .TP .B \fBPRE_BUILD\fP On \fIVisual Studio Generators\fP, run before any other rules are executed within the target. On other generators, run just before \fBPRE_LINK\fP commands. .TP .B \fBPRE_LINK\fP Run after sources have been compiled but before linking the binary or running the librarian or archiver tool of a static library. This is not defined for targets created by the \fBadd_custom_target()\fP command. .TP .B \fBPOST_BUILD\fP Run after all other rules within the target have been executed. .UNINDENT .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 Because generator expressions can be used in custom commands, it is possible to define \fBCOMMAND\fP lines or whole custom commands which evaluate to empty strings for certain configurations. For \fBVisual Studio 2010 (and newer)\fP generators these command lines or custom commands will be omitted for the specific configuration and no "empty\-string\-command" will be added. .sp This allows to add individual build events for every configuration. .UNINDENT .UNINDENT .SS add_custom_target .sp Add a target with no output so it will always be built. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_custom_target(Name [ALL] [command1 [args1...]] [COMMAND command2 [args2...] ...] [DEPENDS depend depend depend ... ] [BYPRODUCTS [files...]] [WORKING_DIRECTORY dir] [COMMENT comment] [JOB_POOL job_pool] [VERBATIM] [USES_TERMINAL] [COMMAND_EXPAND_LISTS] [SOURCES src1 [src2...]]) .ft P .fi .UNINDENT .UNINDENT .sp Adds a target with the given name that executes the given commands. The target has no output file and is \fIalways considered out of date\fP even if the commands try to create a file with the name of the target. Use the \fBadd_custom_command()\fP command to generate a file with dependencies. By default nothing depends on the custom target. Use the \fBadd_dependencies()\fP command to add dependencies to or from other targets. .sp The options are: .INDENT 0.0 .TP .B \fBALL\fP Indicate that this target should be added to the default build target so that it will be run every time (the command cannot be called \fBALL\fP). .TP .B \fBBYPRODUCTS\fP Specify the files the command is expected to produce but whose modification time may or may not be updated on subsequent builds. If a byproduct name is a relative path it will be interpreted relative to the build tree directory corresponding to the current source directory. Each byproduct file will be marked with the \fBGENERATED\fP source file property automatically. .sp Explicit specification of byproducts is supported by the \fBNinja\fP generator to tell the \fBninja\fP build tool how to regenerate byproducts when they are missing. It is also useful when other build rules (e.g. custom commands) depend on the byproducts. Ninja requires a build rule for any generated file on which another rule depends even if there are order\-only dependencies to ensure the byproducts will be available before their dependents build. .sp The \fBBYPRODUCTS\fP option is ignored on non\-Ninja generators except to mark byproducts \fBGENERATED\fP\&. .TP .B \fBCOMMAND\fP Specify the command\-line(s) to execute at build time. If more than one \fBCOMMAND\fP is specified they will be executed in order, but \fInot\fP necessarily composed into a stateful shell or batch script. (To run a full script, use the \fBconfigure_file()\fP command or the \fBfile(GENERATE)\fP command to create it, and then specify a \fBCOMMAND\fP to launch it.) .sp If \fBCOMMAND\fP specifies an executable target name (created by the \fBadd_executable()\fP command) it will automatically be replaced by the location of the executable created at build time. If set, the \fBCROSSCOMPILING_EMULATOR\fP executable target property will also be prepended to the command to allow the executable to run on the host. Additionally a target\-level dependency will be added so that the executable target will be built before this custom target. .sp Arguments to \fBCOMMAND\fP may use \fBgenerator expressions\fP\&. References to target names in generator expressions imply target\-level dependencies. .sp The command and arguments are optional and if not specified an empty target will be created. .TP .B \fBCOMMENT\fP Display the given message before the commands are executed at build time. .TP .B \fBDEPENDS\fP Reference files and outputs of custom commands created with \fBadd_custom_command()\fP command calls in the same directory (\fBCMakeLists.txt\fP file). They will be brought up to date when the target is built. .sp Use the \fBadd_dependencies()\fP command to add dependencies on other targets. .TP .B \fBCOMMAND_EXPAND_LISTS\fP Lists in \fBCOMMAND\fP arguments will be expanded, including those created with \fBgenerator expressions\fP, allowing \fBCOMMAND\fP arguments such as \fB${CC} "\-I$<JOIN:$<TARGET_PROPERTY:foo,INCLUDE_DIRECTORIES>,;\-I>" foo.cc\fP to be properly expanded. .TP .B \fBJOB_POOL\fP Specify a \fBpool\fP for the \fBNinja\fP generator. Incompatible with \fBUSES_TERMINAL\fP, which implies the \fBconsole\fP pool. Using a pool that is not defined by \fBJOB_POOLS\fP causes an error by ninja at build time. .TP .B \fBSOURCES\fP Specify additional source files to be included in the custom target. Specified source files will be added to IDE project files for convenience in editing even if they have no build rules. .TP .B \fBVERBATIM\fP All arguments to the commands will be escaped properly for the build tool so that the invoked command receives each argument unchanged. Note that one level of escapes is still used by the CMake language processor before \fBadd_custom_target\fP even sees the arguments. Use of \fBVERBATIM\fP is recommended as it enables correct behavior. When \fBVERBATIM\fP is not given the behavior is platform specific because there is no protection of tool\-specific special characters. .TP .B \fBUSES_TERMINAL\fP The command will be given direct access to the terminal if possible. With the \fBNinja\fP generator, this places the command in the \fBconsole\fP \fBpool\fP\&. .TP .B \fBWORKING_DIRECTORY\fP Execute the command with the given current working directory. If it is a relative path it will be interpreted relative to the build tree directory corresponding to the current source directory. .sp Arguments to \fBWORKING_DIRECTORY\fP may use \fBgenerator expressions\fP\&. .UNINDENT .SS add_definitions .sp Add \-D define flags to the compilation of source files. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_definitions(\-DFOO \-DBAR ...) .ft P .fi .UNINDENT .UNINDENT .sp Adds definitions to the compiler command line for targets in the current directory and below (whether added before or after this command is invoked). This command can be used to add any flags, but it is intended to add preprocessor definitions. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 This command has been superseded by alternatives: .INDENT 0.0 .IP \(bu 2 Use \fBadd_compile_definitions()\fP to add preprocessor definitions. .IP \(bu 2 Use \fBinclude_directories()\fP to add include directories. .IP \(bu 2 Use \fBadd_compile_options()\fP to add other options. .UNINDENT .UNINDENT .UNINDENT .sp Flags beginning in \fB\-D\fP or \fB/D\fP that look like preprocessor definitions are automatically added to the \fBCOMPILE_DEFINITIONS\fP directory property for the current directory. Definitions with non\-trivial values may be left in the set of flags instead of being converted for reasons of backwards compatibility. See documentation of the \fBdirectory\fP, \fBtarget\fP, \fBsource file\fP \fBCOMPILE_DEFINITIONS\fP properties for details on adding preprocessor definitions to specific scopes and configurations. .sp See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .SS add_dependencies .sp Add a dependency between top\-level targets. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_dependencies(<target> [<target\-dependency>]...) .ft P .fi .UNINDENT .UNINDENT .sp Makes a top\-level \fB<target>\fP depend on other top\-level targets to ensure that they build before \fB<target>\fP does. A top\-level target is one created by one of the \fBadd_executable()\fP, \fBadd_library()\fP, or \fBadd_custom_target()\fP commands (but not targets generated by CMake like \fBinstall\fP). .sp Dependencies added to an \fIimported target\fP or an \fIinterface library\fP are followed transitively in its place since the target itself does not build. .sp See the \fBDEPENDS\fP option of \fBadd_custom_target()\fP and \fBadd_custom_command()\fP commands for adding file\-level dependencies in custom rules. See the \fBOBJECT_DEPENDS\fP source file property to add file\-level dependencies to object files. .SS add_executable .sp Add an executable to the project using the specified source files. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_executable(<name> [WIN32] [MACOSX_BUNDLE] [EXCLUDE_FROM_ALL] [source1] [source2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp Adds an executable target called \fB<name>\fP to be built from the source files listed in the command invocation. (The source files can be omitted here if they are added later using \fBtarget_sources()\fP\&.) The \fB<name>\fP corresponds to the logical target name and must be globally unique within a project. The actual file name of the executable built is constructed based on conventions of the native platform (such as \fB<name>.exe\fP or just \fB<name>\fP). .sp By default the executable file will be created in the build tree directory corresponding to the source tree directory in which the command was invoked. See documentation of the \fBRUNTIME_OUTPUT_DIRECTORY\fP target property to change this location. See documentation of the \fBOUTPUT_NAME\fP target property to change the \fB<name>\fP part of the final file name. .sp If \fBWIN32\fP is given the property \fBWIN32_EXECUTABLE\fP will be set on the target created. See documentation of that target property for details. .sp If \fBMACOSX_BUNDLE\fP is given the corresponding property will be set on the created target. See documentation of the \fBMACOSX_BUNDLE\fP target property for details. .sp If \fBEXCLUDE_FROM_ALL\fP is given the corresponding property will be set on the created target. See documentation of the \fBEXCLUDE_FROM_ALL\fP target property for details. .sp Source arguments to \fBadd_executable\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp See also \fBHEADER_FILE_ONLY\fP on what to do if some sources are pre\-processed, and you want to have the original sources reachable from within IDE. .sp .ce ---- .ce 0 .sp .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_executable(<name> IMPORTED [GLOBAL]) .ft P .fi .UNINDENT .UNINDENT .sp An \fIIMPORTED executable target\fP references an executable file located outside the project. No rules are generated to build it, and the \fBIMPORTED\fP target property is \fBTrue\fP\&. The target name has scope in the directory in which it is created and below, but the \fBGLOBAL\fP option extends visibility. It may be referenced like any target built within the project. \fBIMPORTED\fP executables are useful for convenient reference from commands like \fBadd_custom_command()\fP\&. Details about the imported executable are specified by setting properties whose names begin in \fBIMPORTED_\fP\&. The most important such property is \fBIMPORTED_LOCATION\fP (and its per\-configuration version \fBIMPORTED_LOCATION_<CONFIG>\fP) which specifies the location of the main executable file on disk. See documentation of the \fBIMPORTED_*\fP properties for more information. .sp .ce ---- .ce 0 .sp .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_executable(<name> ALIAS <target>) .ft P .fi .UNINDENT .UNINDENT .sp Creates an \fIAlias Target\fP, such that \fB<name>\fP can be used to refer to \fB<target>\fP in subsequent commands. The \fB<name>\fP does not appear in the generated buildsystem as a make target. The \fB<target>\fP may not be a non\-\fBGLOBAL\fP \fIImported Target\fP or an \fBALIAS\fP\&. \fBALIAS\fP targets can be used as targets to read properties from, executables for custom commands and custom targets. They can also be tested for existence with the regular \fBif(TARGET)\fP subcommand. The \fB<name>\fP may not be used to modify properties of \fB<target>\fP, that is, it may not be used as the operand of \fBset_property()\fP, \fBset_target_properties()\fP, \fBtarget_link_libraries()\fP etc. An \fBALIAS\fP target may not be installed or exported. .SS add_library .sp Add a library to the project using the specified source files. .SS Normal Libraries .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(<name> [STATIC | SHARED | MODULE] [EXCLUDE_FROM_ALL] [source1] [source2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp Adds a library target called \fB<name>\fP to be built from the source files listed in the command invocation. (The source files can be omitted here if they are added later using \fBtarget_sources()\fP\&.) The \fB<name>\fP corresponds to the logical target name and must be globally unique within a project. The actual file name of the library built is constructed based on conventions of the native platform (such as \fBlib<name>.a\fP or \fB<name>.lib\fP). .sp \fBSTATIC\fP, \fBSHARED\fP, or \fBMODULE\fP may be given to specify the type of library to be created. \fBSTATIC\fP libraries are archives of object files for use when linking other targets. \fBSHARED\fP libraries are linked dynamically and loaded at runtime. \fBMODULE\fP libraries are plugins that are not linked into other targets but may be loaded dynamically at runtime using dlopen\-like functionality. If no type is given explicitly the type is \fBSTATIC\fP or \fBSHARED\fP based on whether the current value of the variable \fBBUILD_SHARED_LIBS\fP is \fBON\fP\&. For \fBSHARED\fP and \fBMODULE\fP libraries the \fBPOSITION_INDEPENDENT_CODE\fP target property is set to \fBON\fP automatically. A \fBSHARED\fP or \fBSTATIC\fP library may be marked with the \fBFRAMEWORK\fP target property to create an macOS Framework. .sp If a library does not export any symbols, it must not be declared as a \fBSHARED\fP library. For example, a Windows resource DLL or a managed C++/CLI DLL that exports no unmanaged symbols would need to be a \fBMODULE\fP library. This is because CMake expects a \fBSHARED\fP library to always have an associated import library on Windows. .sp By default the library file will be created in the build tree directory corresponding to the source tree directory in which the command was invoked. See documentation of the \fBARCHIVE_OUTPUT_DIRECTORY\fP, \fBLIBRARY_OUTPUT_DIRECTORY\fP, and \fBRUNTIME_OUTPUT_DIRECTORY\fP target properties to change this location. See documentation of the \fBOUTPUT_NAME\fP target property to change the \fB<name>\fP part of the final file name. .sp If \fBEXCLUDE_FROM_ALL\fP is given the corresponding property will be set on the created target. See documentation of the \fBEXCLUDE_FROM_ALL\fP target property for details. .sp Source arguments to \fBadd_library\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp See also \fBHEADER_FILE_ONLY\fP on what to do if some sources are pre\-processed, and you want to have the original sources reachable from within IDE. .SS Imported Libraries .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(<name> <SHARED|STATIC|MODULE|OBJECT|UNKNOWN> IMPORTED [GLOBAL]) .ft P .fi .UNINDENT .UNINDENT .sp An \fIIMPORTED library target\fP references a library file located outside the project. No rules are generated to build it, and the \fBIMPORTED\fP target property is \fBTrue\fP\&. The target name has scope in the directory in which it is created and below, but the \fBGLOBAL\fP option extends visibility. It may be referenced like any target built within the project. \fBIMPORTED\fP libraries are useful for convenient reference from commands like \fBtarget_link_libraries()\fP\&. Details about the imported library are specified by setting properties whose names begin in \fBIMPORTED_\fP and \fBINTERFACE_\fP\&. .sp The most important properties are: .INDENT 0.0 .IP \(bu 2 \fBIMPORTED_LOCATION\fP (and its per\-configuration variant \fBIMPORTED_LOCATION_<CONFIG>\fP) which specifies the location of the main library file on disk. .IP \(bu 2 \fBIMPORTED_OBJECTS\fP (and \fBIMPORTED_OBJECTS_<CONFIG>\fP) for object libraries, specifies the locations of object files on disk. .IP \(bu 2 \fBPUBLIC_HEADER\fP files to be installed during \fBinstall()\fP invocation .UNINDENT .sp See documentation of the \fBIMPORTED_*\fP and \fBINTERFACE_*\fP properties for more information. .sp An \fBUNKNOWN\fP library type is typically only used in the implementation of \fIFind Modules\fP\&. It allows the path to an imported library (often found using the \fBfind_library()\fP command) to be used without having to know what type of library it is. This is especially useful on Windows where a static library and a DLL\(aqs import library both have the same file extension. .SS Object Libraries .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(<name> OBJECT <src>...) .ft P .fi .UNINDENT .UNINDENT .sp Creates an \fIObject Library\fP\&. An object library compiles source files but does not archive or link their object files into a library. Instead other targets created by \fBadd_library()\fP or \fBadd_executable()\fP may reference the objects using an expression of the form \fB$<TARGET_OBJECTS:objlib>\fP as a source, where \fBobjlib\fP is the object library name. For example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(... $<TARGET_OBJECTS:objlib> ...) add_executable(... $<TARGET_OBJECTS:objlib> ...) .ft P .fi .UNINDENT .UNINDENT .sp will include objlib\(aqs object files in a library and an executable along with those compiled from their own sources. Object libraries may contain only sources that compile, header files, and other files that would not affect linking of a normal library (e.g. \fB\&.txt\fP). They may contain custom commands generating such sources, but not \fBPRE_BUILD\fP, \fBPRE_LINK\fP, or \fBPOST_BUILD\fP commands. Some native build systems (such as Xcode) may not like targets that have only object files, so consider adding at least one real source file to any target that references \fB$<TARGET_OBJECTS:objlib>\fP\&. .SS Alias Libraries .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(<name> ALIAS <target>) .ft P .fi .UNINDENT .UNINDENT .sp Creates an \fIAlias Target\fP, such that \fB<name>\fP can be used to refer to \fB<target>\fP in subsequent commands. The \fB<name>\fP does not appear in the generated buildsystem as a make target. The \fB<target>\fP may not be a non\-\fBGLOBAL\fP \fIImported Target\fP or an \fBALIAS\fP\&. \fBALIAS\fP targets can be used as linkable targets and as targets to read properties from. They can also be tested for existence with the regular \fBif(TARGET)\fP subcommand. The \fB<name>\fP may not be used to modify properties of \fB<target>\fP, that is, it may not be used as the operand of \fBset_property()\fP, \fBset_target_properties()\fP, \fBtarget_link_libraries()\fP etc. An \fBALIAS\fP target may not be installed or exported. .SS Interface Libraries .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(<name> INTERFACE [IMPORTED [GLOBAL]]) .ft P .fi .UNINDENT .UNINDENT .sp Creates an \fIInterface Library\fP\&. An \fBINTERFACE\fP library target does not directly create build output, though it may have properties set on it and it may be installed, exported and imported. Typically the \fBINTERFACE_*\fP properties are populated on the interface target using the commands: .INDENT 0.0 .IP \(bu 2 \fBset_property()\fP, .IP \(bu 2 \fBtarget_link_libraries(INTERFACE)\fP, .IP \(bu 2 \fBtarget_link_options(INTERFACE)\fP, .IP \(bu 2 \fBtarget_include_directories(INTERFACE)\fP, .IP \(bu 2 \fBtarget_compile_options(INTERFACE)\fP, .IP \(bu 2 \fBtarget_compile_definitions(INTERFACE)\fP, and .IP \(bu 2 \fBtarget_sources(INTERFACE)\fP, .UNINDENT .sp and then it is used as an argument to \fBtarget_link_libraries()\fP like any other target. .sp An \fBINTERFACE\fP \fIImported Target\fP may also be created with this signature. An \fBIMPORTED\fP library target references a library defined outside the project. The target name has scope in the directory in which it is created and below, but the \fBGLOBAL\fP option extends visibility. It may be referenced like any target built within the project. \fBIMPORTED\fP libraries are useful for convenient reference from commands like \fBtarget_link_libraries()\fP\&. .SS add_link_options .sp Add options to the link step for executable, shared library or module library targets in the current directory and below that are added after this command is invoked. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_link_options(<option> ...) .ft P .fi .UNINDENT .UNINDENT .sp This command can be used to add any link options, but alternative commands exist to add libraries (\fBtarget_link_libraries()\fP or \fBlink_libraries()\fP). See documentation of the \fBdirectory\fP and \fBtarget\fP \fBLINK_OPTIONS\fP properties. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 This command cannot be used to add options for static library targets, since they do not use a linker. To add archiver or MSVC librarian flags, see the \fBSTATIC_LIBRARY_OPTIONS\fP target property. .UNINDENT .UNINDENT .sp Arguments to \fBadd_link_options\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp The final set of compile or link options used for a target is constructed by accumulating options from the current target and the usage requirements of it dependencies. The set of options is de\-duplicated to avoid repetition. While beneficial for individual options, the de\-duplication step can break up option groups. For example, \fB\-D A \-D B\fP becomes \fB\-D A B\fP\&. One may specify a group of options using shell\-like quoting along with a \fBSHELL:\fP prefix. The \fBSHELL:\fP prefix is dropped and the rest of the option string is parsed using the \fBseparate_arguments()\fP \fBUNIX_COMMAND\fP mode. For example, \fB"SHELL:\-D A" "SHELL:\-D B"\fP becomes \fB\-D A \-D B\fP\&. .sp To pass options to the linker tool, each compiler driver has is own syntax. The \fBLINKER:\fP prefix can be used to specify, in a portable way, options to pass to the linker tool. The \fBLINKER:\fP prefix is replaced by the required driver option and the rest of the option string defines linker arguments using \fB,\fP as separator. These arguments will be formatted according to the \fBCMAKE_<LANG>_LINKER_WRAPPER_FLAG\fP and \fBCMAKE_<LANG>_LINKER_WRAPPER_FLAG_SEP\fP variables. .sp For example, \fB"LINKER:\-z,defs"\fP becomes \fB\-Xlinker \-z \-Xlinker defs\fP for \fBClang\fP and \fB\-Wl,\-z,defs\fP for \fBGNU GCC\fP\&. .sp The \fBLINKER:\fP prefix can be specified as part of a \fBSHELL:\fP prefix expression. .sp The \fBLINKER:\fP prefix supports, as alternate syntax, specification of arguments using \fBSHELL:\fP prefix and space as separator. Previous example becomes \fB"LINKER:SHELL:\-z defs"\fP\&. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 Specifying \fBSHELL:\fP prefix elsewhere than at the beginning of the \fBLINKER:\fP prefix is not supported. .UNINDENT .UNINDENT .SS add_subdirectory .sp Add a subdirectory to the build. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_subdirectory(source_dir [binary_dir] [EXCLUDE_FROM_ALL]) .ft P .fi .UNINDENT .UNINDENT .sp Adds a subdirectory to the build. The source_dir specifies the directory in which the source CMakeLists.txt and code files are located. If it is a relative path it will be evaluated with respect to the current directory (the typical usage), but it may also be an absolute path. The \fBbinary_dir\fP specifies the directory in which to place the output files. If it is a relative path it will be evaluated with respect to the current output directory, but it may also be an absolute path. If \fBbinary_dir\fP is not specified, the value of \fBsource_dir\fP, before expanding any relative path, will be used (the typical usage). The CMakeLists.txt file in the specified source directory will be processed immediately by CMake before processing in the current input file continues beyond this command. .sp If the \fBEXCLUDE_FROM_ALL\fP argument is provided then targets in the subdirectory will not be included in the \fBALL\fP target of the parent directory by default, and will be excluded from IDE project files. Users must explicitly build targets in the subdirectory. This is meant for use when the subdirectory contains a separate part of the project that is useful but not necessary, such as a set of examples. Typically the subdirectory should contain its own \fBproject()\fP command invocation so that a full build system will be generated in the subdirectory (such as a VS IDE solution file). Note that inter\-target dependencies supersede this exclusion. If a target built by the parent project depends on a target in the subdirectory, the dependee target will be included in the parent project build system to satisfy the dependency. .SS add_test .sp Add a test to the project to be run by \fBctest(1)\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_test(NAME <name> COMMAND <command> [<arg>...] [CONFIGURATIONS <config>...] [WORKING_DIRECTORY <dir>]) .ft P .fi .UNINDENT .UNINDENT .sp Adds a test called \fB<name>\fP\&. The test name may not contain spaces, quotes, or other characters special in CMake syntax. The options are: .INDENT 0.0 .TP .B \fBCOMMAND\fP Specify the test command\-line. If \fB<command>\fP specifies an executable target (created by \fBadd_executable()\fP) it will automatically be replaced by the location of the executable created at build time. .TP .B \fBCONFIGURATIONS\fP Restrict execution of the test only to the named configurations. .TP .B \fBWORKING_DIRECTORY\fP Set the \fBWORKING_DIRECTORY\fP test property to specify the working directory in which to execute the test. If not specified the test will be run with the current working directory set to the build directory corresponding to the current source directory. .UNINDENT .sp The given test command is expected to exit with code \fB0\fP to pass and non\-zero to fail, or vice\-versa if the \fBWILL_FAIL\fP test property is set. Any output written to stdout or stderr will be captured by \fBctest(1)\fP but does not affect the pass/fail status unless the \fBPASS_REGULAR_EXPRESSION\fP or \fBFAIL_REGULAR_EXPRESSION\fP test property is used. .sp The \fBCOMMAND\fP and \fBWORKING_DIRECTORY\fP options may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. .sp Example usage: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_test(NAME mytest COMMAND testDriver \-\-config $<CONFIGURATION> \-\-exe $<TARGET_FILE:myexe>) .ft P .fi .UNINDENT .UNINDENT .sp This creates a test \fBmytest\fP whose command runs a \fBtestDriver\fP tool passing the configuration name and the full path to the executable file produced by target \fBmyexe\fP\&. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 CMake will generate tests only if the \fBenable_testing()\fP command has been invoked. The \fBCTest\fP module invokes the command automatically unless the \fBBUILD_TESTING\fP option is turned \fBOFF\fP\&. .UNINDENT .UNINDENT .sp .ce ---- .ce 0 .sp .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_test(<name> <command> [<arg>...]) .ft P .fi .UNINDENT .UNINDENT .sp Add a test called \fB<name>\fP with the given command\-line. Unlike the above \fBNAME\fP signature no transformation is performed on the command\-line to support target names or generator expressions. .SS aux_source_directory .sp Find all source files in a directory. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C aux_source_directory(<dir> <variable>) .ft P .fi .UNINDENT .UNINDENT .sp Collects the names of all the source files in the specified directory and stores the list in the \fB<variable>\fP provided. This command is intended to be used by projects that use explicit template instantiation. Template instantiation files can be stored in a \fBTemplates\fP subdirectory and collected automatically using this command to avoid manually listing all instantiations. .sp It is tempting to use this command to avoid writing the list of source files for a library or executable target. While this seems to work, there is no way for CMake to generate a build system that knows when a new source file has been added. Normally the generated build system knows when it needs to rerun CMake because the \fBCMakeLists.txt\fP file is modified to add a new source. When the source is just added to the directory without modifying this file, one would have to manually rerun CMake to generate a build system incorporating the new file. .SS build_command .sp Get a command line to build the current project. This is mainly intended for internal use by the \fBCTest\fP module. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C build_command(<variable> [CONFIGURATION <config>] [TARGET <target>] [PROJECT_NAME <projname>] # legacy, causes warning ) .ft P .fi .UNINDENT .UNINDENT .sp Sets the given \fB<variable>\fP to a command\-line string of the form: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C <cmake> \-\-build . [\-\-config <config>] [\-\-target <target>...] [\-\- \-i] .ft P .fi .UNINDENT .UNINDENT .sp where \fB<cmake>\fP is the location of the \fBcmake(1)\fP command\-line tool, and \fB<config>\fP and \fB<target>\fP are the values provided to the \fBCONFIGURATION\fP and \fBTARGET\fP options, if any. The trailing \fB\-\- \-i\fP option is added for \fIMakefile Generators\fP if policy \fBCMP0061\fP is not set to \fBNEW\fP\&. .sp When invoked, this \fBcmake \-\-build\fP command line will launch the underlying build system tool. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C build_command(<cachevariable> <makecommand>) .ft P .fi .UNINDENT .UNINDENT .sp This second signature is deprecated, but still available for backwards compatibility. Use the first signature instead. .sp It sets the given \fB<cachevariable>\fP to a command\-line string as above but without the \fB\-\-target\fP option. The \fB<makecommand>\fP is ignored but should be the full path to devenv, nmake, make or one of the end user build tools for legacy invocations. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 In CMake versions prior to 3.0 this command returned a command line that directly invokes the native build tool for the current generator. Their implementation of the \fBPROJECT_NAME\fP option had no useful effects, so CMake now warns on use of the option. .UNINDENT .UNINDENT .SS create_test_sourcelist .sp Create a test driver and source list for building test programs. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C create_test_sourcelist(sourceListName driverName test1 test2 test3 EXTRA_INCLUDE include.h FUNCTION function) .ft P .fi .UNINDENT .UNINDENT .sp A test driver is a program that links together many small tests into a single executable. This is useful when building static executables with large libraries to shrink the total required size. The list of source files needed to build the test driver will be in \fBsourceListName\fP\&. \fBdriverName\fP is the name of the test driver program. The rest of the arguments consist of a list of test source files, can be semicolon separated. Each test source file should have a function in it that is the same name as the file with no extension (foo.cxx should have int foo(int, char*[]);) \fBdriverName\fP will be able to call each of the tests by name on the command line. If \fBEXTRA_INCLUDE\fP is specified, then the next argument is included into the generated file. If \fBFUNCTION\fP is specified, then the next argument is taken as a function name that is passed a pointer to ac and av. This can be used to add extra command line processing to each test. The \fBCMAKE_TESTDRIVER_BEFORE_TESTMAIN\fP cmake variable can be set to have code that will be placed directly before calling the test main function. \fBCMAKE_TESTDRIVER_AFTER_TESTMAIN\fP can be set to have code that will be placed directly after the call to the test main function. .SS define_property .sp Define and document custom properties. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C define_property(<GLOBAL | DIRECTORY | TARGET | SOURCE | TEST | VARIABLE | CACHED_VARIABLE> PROPERTY <name> [INHERITED] BRIEF_DOCS <brief\-doc> [docs...] FULL_DOCS <full\-doc> [docs...]) .ft P .fi .UNINDENT .UNINDENT .sp Defines one property in a scope for use with the \fBset_property()\fP and \fBget_property()\fP commands. This is primarily useful to associate documentation with property names that may be retrieved with the \fBget_property()\fP command. The first argument determines the kind of scope in which the property should be used. It must be one of the following: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C GLOBAL = associated with the global namespace DIRECTORY = associated with one directory TARGET = associated with one target SOURCE = associated with one source file TEST = associated with a test named with add_test VARIABLE = documents a CMake language variable CACHED_VARIABLE = documents a CMake cache variable .ft P .fi .UNINDENT .UNINDENT .sp Note that unlike \fBset_property()\fP and \fBget_property()\fP no actual scope needs to be given; only the kind of scope is important. .sp The required \fBPROPERTY\fP option is immediately followed by the name of the property being defined. .sp If the \fBINHERITED\fP option is given, then the \fBget_property()\fP command will chain up to the next higher scope when the requested property is not set in the scope given to the command. .INDENT 0.0 .IP \(bu 2 \fBDIRECTORY\fP scope chains to its parent directory\(aqs scope, continuing the walk up parent directories until a directory has the property set or there are no more parents. If still not found at the top level directory, it chains to the \fBGLOBAL\fP scope. .IP \(bu 2 \fBTARGET\fP, \fBSOURCE\fP and \fBTEST\fP properties chain to \fBDIRECTORY\fP scope, including further chaining up the directories, etc. as needed. .UNINDENT .sp Note that this scope chaining behavior only applies to calls to \fBget_property()\fP, \fBget_directory_property()\fP, \fBget_target_property()\fP, \fBget_source_file_property()\fP and \fBget_test_property()\fP\&. There is no inheriting behavior when \fIsetting\fP properties, so using \fBAPPEND\fP or \fBAPPEND_STRING\fP with the \fBset_property()\fP command will not consider inherited values when working out the contents to append to. .sp The \fBBRIEF_DOCS\fP and \fBFULL_DOCS\fP options are followed by strings to be associated with the property as its brief and full documentation. Corresponding options to the \fBget_property()\fP command will retrieve the documentation. .SS enable_language .sp Enable a language (CXX/C/Fortran/etc) .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C enable_language(<lang> [OPTIONAL] ) .ft P .fi .UNINDENT .UNINDENT .sp Enables support for the named language in CMake. This is the same as the \fBproject()\fP command but does not create any of the extra variables that are created by the project command. Example languages are \fBCXX\fP, \fBC\fP, \fBCUDA\fP, \fBFortran\fP, and \fBASM\fP\&. .sp If enabling \fBASM\fP, enable it last so that CMake can check whether compilers for other languages like \fBC\fP work for assembly too. .sp This command must be called in file scope, not in a function call. Furthermore, it must be called in the highest directory common to all targets using the named language directly for compiling sources or indirectly through link dependencies. It is simplest to enable all needed languages in the top\-level directory of a project. .sp The \fBOPTIONAL\fP keyword is a placeholder for future implementation and does not currently work. Instead you can use the \fBCheckLanguage\fP module to verify support before enabling. .SS enable_testing .sp Enable testing for current directory and below. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C enable_testing() .ft P .fi .UNINDENT .UNINDENT .sp Enables testing for this directory and below. .sp This command should be in the source directory root because ctest expects to find a test file in the build directory root. .sp This command is automatically invoked when the \fBCTest\fP module is included, except if the \fBBUILD_TESTING\fP option is turned off. .sp See also the \fBadd_test()\fP command. .SS export .sp Export targets from the build tree for use by outside projects. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C export(EXPORT <export\-name> [NAMESPACE <namespace>] [FILE <filename>]) .ft P .fi .UNINDENT .UNINDENT .sp Creates a file \fB<filename>\fP that may be included by outside projects to import targets from the current project\(aqs build tree. This is useful during cross\-compiling to build utility executables that can run on the host platform in one project and then import them into another project being compiled for the target platform. If the \fBNAMESPACE\fP option is given the \fB<namespace>\fP string will be prepended to all target names written to the file. .sp Target installations are associated with the export \fB<export\-name>\fP using the \fBEXPORT\fP option of the \fBinstall(TARGETS)\fP command. .sp The file created by this command is specific to the build tree and should never be installed. See the \fBinstall(EXPORT)\fP command to export targets from an installation tree. .sp The properties set on the generated IMPORTED targets will have the same values as the final values of the input TARGETS. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C export(TARGETS [target1 [target2 [...]]] [NAMESPACE <namespace>] [APPEND] FILE <filename> [EXPORT_LINK_INTERFACE_LIBRARIES]) .ft P .fi .UNINDENT .UNINDENT .sp This signature is similar to the \fBEXPORT\fP signature, but targets are listed explicitly rather than specified as an export\-name. If the APPEND option is given the generated code will be appended to the file instead of overwriting it. The EXPORT_LINK_INTERFACE_LIBRARIES keyword, if present, causes the contents of the properties matching \fB(IMPORTED_)?LINK_INTERFACE_LIBRARIES(_<CONFIG>)?\fP to be exported, when policy CMP0022 is NEW. If a library target is included in the export but a target to which it links is not included the behavior is unspecified. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 \fIObject Libraries\fP under \fBXcode\fP have special handling if multiple architectures are listed in \fBCMAKE_OSX_ARCHITECTURES\fP\&. In this case they will be exported as \fIInterface Libraries\fP with no object files available to clients. This is sufficient to satisfy transitive usage requirements of other targets that link to the object libraries in their implementation. .UNINDENT .UNINDENT .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C export(PACKAGE <PackageName>) .ft P .fi .UNINDENT .UNINDENT .sp Store the current build directory in the CMake user package registry for package \fB<PackageName>\fP\&. The \fBfind_package()\fP command may consider the directory while searching for package \fB<PackageName>\fP\&. This helps dependent projects find and use a package from the current project\(aqs build tree without help from the user. Note that the entry in the package registry that this command creates works only in conjunction with a package configuration file (\fB<PackageName>Config.cmake\fP) that works with the build tree. In some cases, for example for packaging and for system wide installations, it is not desirable to write the user package registry. .sp By default the \fBexport(PACKAGE)\fP command does nothing (see policy \fBCMP0090\fP) because populating the user package registry has effects outside the source and build trees. Set the \fBCMAKE_EXPORT_PACKAGE_REGISTRY\fP variable to add build directories to the CMake user package registry. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C export(TARGETS [target1 [target2 [...]]] [ANDROID_MK <filename>]) .ft P .fi .UNINDENT .UNINDENT .sp This signature exports cmake built targets to the android ndk build system by creating an Android.mk file that references the prebuilt targets. The Android NDK supports the use of prebuilt libraries, both static and shared. This allows cmake to build the libraries of a project and make them available to an ndk build system complete with transitive dependencies, include flags and defines required to use the libraries. The signature takes a list of targets and puts them in the Android.mk file specified by the \fB<filename>\fP given. This signature can only be used if policy CMP0022 is NEW for all targets given. A error will be issued if that policy is set to OLD for one of the targets. .SS fltk_wrap_ui .sp Create FLTK user interfaces Wrappers. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C fltk_wrap_ui(resultingLibraryName source1 source2 ... sourceN ) .ft P .fi .UNINDENT .UNINDENT .sp Produce .h and .cxx files for all the .fl and .fld files listed. The resulting .h and .cxx files will be added to a variable named \fBresultingLibraryName_FLTK_UI_SRCS\fP which should be added to your library. .SS get_source_file_property .sp Get a property for a source file. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C get_source_file_property(VAR file property) .ft P .fi .UNINDENT .UNINDENT .sp Gets a property from a source file. The value of the property is stored in the variable \fBVAR\fP\&. If the source property is not found, the behavior depends on whether it has been defined to be an \fBINHERITED\fP property or not (see \fBdefine_property()\fP). Non\-inherited properties will set \fBVAR\fP to "NOTFOUND", whereas inherited properties will search the relevant parent scope as described for the \fBdefine_property()\fP command and if still unable to find the property, \fBVAR\fP will be set to an empty string. .sp Use \fBset_source_files_properties()\fP to set property values. Source file properties usually control how the file is built. One property that is always there is \fBLOCATION\fP\&. .sp See also the more general \fBget_property()\fP command. .SS get_target_property .sp Get a property from a target. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C get_target_property(VAR target property) .ft P .fi .UNINDENT .UNINDENT .sp Get a property from a target. The value of the property is stored in the variable \fBVAR\fP\&. If the target property is not found, the behavior depends on whether it has been defined to be an \fBINHERITED\fP property or not (see \fBdefine_property()\fP). Non\-inherited properties will set \fBVAR\fP to \fBNOTFOUND\fP, whereas inherited properties will search the relevant parent scope as described for the \fBdefine_property()\fP command and if still unable to find the property, \fBVAR\fP will be set to an empty string. .sp Use \fBset_target_properties()\fP to set target property values. Properties are usually used to control how a target is built, but some query the target instead. This command can get properties for any target so far created. The targets do not need to be in the current \fBCMakeLists.txt\fP file. .sp See also the more general \fBget_property()\fP command. .sp See \fITarget Properties\fP for the list of properties known to CMake. .SS get_test_property .sp Get a property of the test. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C get_test_property(test property VAR) .ft P .fi .UNINDENT .UNINDENT .sp Get a property from the test. The value of the property is stored in the variable \fBVAR\fP\&. If the test property is not found, the behavior depends on whether it has been defined to be an \fBINHERITED\fP property or not (see \fBdefine_property()\fP). Non\-inherited properties will set \fBVAR\fP to "NOTFOUND", whereas inherited properties will search the relevant parent scope as described for the \fBdefine_property()\fP command and if still unable to find the property, \fBVAR\fP will be set to an empty string. .sp For a list of standard properties you can type \fBcmake \-\-help\-property\-list\fP\&. .sp See also the more general \fBget_property()\fP command. .SS include_directories .sp Add include directories to the build. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C include_directories([AFTER|BEFORE] [SYSTEM] dir1 [dir2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp Add the given directories to those the compiler uses to search for include files. Relative paths are interpreted as relative to the current source directory. .sp The include directories are added to the \fBINCLUDE_DIRECTORIES\fP directory property for the current \fBCMakeLists\fP file. They are also added to the \fBINCLUDE_DIRECTORIES\fP target property for each target in the current \fBCMakeLists\fP file. The target property values are the ones used by the generators. .sp By default the directories specified are appended onto the current list of directories. This default behavior can be changed by setting \fBCMAKE_INCLUDE_DIRECTORIES_BEFORE\fP to \fBON\fP\&. By using \fBAFTER\fP or \fBBEFORE\fP explicitly, you can select between appending and prepending, independent of the default. .sp If the \fBSYSTEM\fP option is given, the compiler will be told the directories are meant as system include directories on some platforms. Signalling this setting might achieve effects such as the compiler skipping warnings, or these fixed\-install system files not being considered in dependency calculations \- see compiler docs. .sp Arguments to \fBinclude_directories\fP may use "generator expressions" with the syntax "$<...>". See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 Prefer the \fBtarget_include_directories()\fP command to add include directories to individual targets and optionally propagate/export them to dependents. .UNINDENT .UNINDENT .SS include_external_msproject .sp Include an external Microsoft project file in a workspace. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C include_external_msproject(projectname location [TYPE projectTypeGUID] [GUID projectGUID] [PLATFORM platformName] dep1 dep2 ...) .ft P .fi .UNINDENT .UNINDENT .sp Includes an external Microsoft project in the generated workspace file. Currently does nothing on UNIX. This will create a target named \fB[projectname]\fP\&. This can be used in the \fBadd_dependencies()\fP command to make things depend on the external project. .sp \fBTYPE\fP, \fBGUID\fP and \fBPLATFORM\fP are optional parameters that allow one to specify the type of project, id (\fBGUID\fP) of the project and the name of the target platform. This is useful for projects requiring values other than the default (e.g. WIX projects). .sp If the imported project has different configuration names than the current project, set the \fBMAP_IMPORTED_CONFIG_<CONFIG>\fP target property to specify the mapping. .SS include_regular_expression .sp Set the regular expression used for dependency checking. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C include_regular_expression(regex_match [regex_complain]) .ft P .fi .UNINDENT .UNINDENT .sp Sets the regular expressions used in dependency checking. Only files matching \fBregex_match\fP will be traced as dependencies. Only files matching \fBregex_complain\fP will generate warnings if they cannot be found (standard header paths are not searched). The defaults are: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C regex_match = "^.*$" (match everything) regex_complain = "^$" (match empty string only) .ft P .fi .UNINDENT .UNINDENT .SS install .sp Specify rules to run at install time. .SS Synopsis .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install(\fI\%TARGETS\fP <target>... [...]) install({\fI\%FILES\fP | \fI\%PROGRAMS\fP} <file>... [...]) install(\fI\%DIRECTORY\fP <dir>... [...]) install(\fI\%SCRIPT\fP <file> [...]) install(\fI\%CODE\fP <code> [...]) install(\fI\%EXPORT\fP <export\-name> [...]) .ft P .fi .UNINDENT .UNINDENT .SS Introduction .sp This command generates installation rules for a project. Rules specified by calls to this command within a source directory are executed in order during installation. The order across directories is not defined. .sp There are multiple signatures for this command. Some of them define installation options for files and targets. Options common to multiple signatures are covered here but they are valid only for signatures that specify them. The common options are: .INDENT 0.0 .TP .B \fBDESTINATION\fP Specify the directory on disk to which a file will be installed. If a full path (with a leading slash or drive letter) is given it is used directly. If a relative path is given it is interpreted relative to the value of the \fBCMAKE_INSTALL_PREFIX\fP variable. The prefix can be relocated at install time using the \fBDESTDIR\fP mechanism explained in the \fBCMAKE_INSTALL_PREFIX\fP variable documentation. .TP .B \fBPERMISSIONS\fP Specify permissions for installed files. Valid permissions are \fBOWNER_READ\fP, \fBOWNER_WRITE\fP, \fBOWNER_EXECUTE\fP, \fBGROUP_READ\fP, \fBGROUP_WRITE\fP, \fBGROUP_EXECUTE\fP, \fBWORLD_READ\fP, \fBWORLD_WRITE\fP, \fBWORLD_EXECUTE\fP, \fBSETUID\fP, and \fBSETGID\fP\&. Permissions that do not make sense on certain platforms are ignored on those platforms. .TP .B \fBCONFIGURATIONS\fP Specify a list of build configurations for which the install rule applies (Debug, Release, etc.). Note that the values specified for this option only apply to options listed AFTER the \fBCONFIGURATIONS\fP option. For example, to set separate install paths for the Debug and Release configurations, do the following: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C install(TARGETS target CONFIGURATIONS Debug RUNTIME DESTINATION Debug/bin) install(TARGETS target CONFIGURATIONS Release RUNTIME DESTINATION Release/bin) .ft P .fi .UNINDENT .UNINDENT .sp Note that \fBCONFIGURATIONS\fP appears BEFORE \fBRUNTIME DESTINATION\fP\&. .TP .B \fBCOMPONENT\fP Specify an installation component name with which the install rule is associated, such as "runtime" or "development". During component\-specific installation only install rules associated with the given component name will be executed. During a full installation all components are installed unless marked with \fBEXCLUDE_FROM_ALL\fP\&. If \fBCOMPONENT\fP is not provided a default component "Unspecified" is created. The default component name may be controlled with the \fBCMAKE_INSTALL_DEFAULT_COMPONENT_NAME\fP variable. .TP .B \fBEXCLUDE_FROM_ALL\fP Specify that the file is excluded from a full installation and only installed as part of a component\-specific installation .TP .B \fBRENAME\fP Specify a name for an installed file that may be different from the original file. Renaming is allowed only when a single file is installed by the command. .TP .B \fBOPTIONAL\fP Specify that it is not an error if the file to be installed does not exist. .UNINDENT .sp Command signatures that install files may print messages during installation. Use the \fBCMAKE_INSTALL_MESSAGE\fP variable to control which messages are printed. .sp Many of the \fBinstall()\fP variants implicitly create the directories containing the installed files. If \fBCMAKE_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS\fP is set, these directories will be created with the permissions specified. Otherwise, they will be created according to the uname rules on Unix\-like platforms. Windows platforms are unaffected. .SS Installing Targets .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install(TARGETS targets... [EXPORT <export\-name>] [[ARCHIVE|LIBRARY|RUNTIME|OBJECTS|FRAMEWORK|BUNDLE| PRIVATE_HEADER|PUBLIC_HEADER|RESOURCE] [DESTINATION <dir>] [PERMISSIONS permissions...] [CONFIGURATIONS [Debug|Release|...]] [COMPONENT <component>] [NAMELINK_COMPONENT <component>] [OPTIONAL] [EXCLUDE_FROM_ALL] [NAMELINK_ONLY|NAMELINK_SKIP] ] [...] [INCLUDES DESTINATION [<dir> ...]] ) .ft P .fi .UNINDENT .UNINDENT .sp The \fBTARGETS\fP form specifies rules for installing targets from a project. There are several kinds of target files that may be installed: .INDENT 0.0 .TP .B \fBARCHIVE\fP Static libraries are treated as \fBARCHIVE\fP targets, except those marked with the \fBFRAMEWORK\fP property on macOS (see \fBFRAMEWORK\fP below.) For DLL platforms (all Windows\-based systems including Cygwin), the DLL import library is treated as an \fBARCHIVE\fP target. .TP .B \fBLIBRARY\fP Module libraries are always treated as \fBLIBRARY\fP targets. For non\- DLL platforms shared libraries are treated as \fBLIBRARY\fP targets, except those marked with the \fBFRAMEWORK\fP property on macOS (see \fBFRAMEWORK\fP below.) .TP .B \fBRUNTIME\fP Executables are treated as \fBRUNTIME\fP objects, except those marked with the \fBMACOSX_BUNDLE\fP property on macOS (see \fBBUNDLE\fP below.) For DLL platforms (all Windows\-based systems including Cygwin), the DLL part of a shared library is treated as a \fBRUNTIME\fP target. .TP .B \fBOBJECTS\fP Object libraries (a simple group of object files) are always treated as \fBOBJECTS\fP targets. .TP .B \fBFRAMEWORK\fP Both static and shared libraries marked with the \fBFRAMEWORK\fP property are treated as \fBFRAMEWORK\fP targets on macOS. .TP .B \fBBUNDLE\fP Executables marked with the \fBMACOSX_BUNDLE\fP property are treated as \fBBUNDLE\fP targets on macOS. .TP .B \fBPUBLIC_HEADER\fP Any \fBPUBLIC_HEADER\fP files associated with a library are installed in the destination specified by the \fBPUBLIC_HEADER\fP argument on non\-Apple platforms. Rules defined by this argument are ignored for \fBFRAMEWORK\fP libraries on Apple platforms because the associated files are installed into the appropriate locations inside the framework folder. See \fBPUBLIC_HEADER\fP for details. .TP .B \fBPRIVATE_HEADER\fP Similar to \fBPUBLIC_HEADER\fP, but for \fBPRIVATE_HEADER\fP files. See \fBPRIVATE_HEADER\fP for details. .TP .B \fBRESOURCE\fP Similar to \fBPUBLIC_HEADER\fP and \fBPRIVATE_HEADER\fP, but for \fBRESOURCE\fP files. See \fBRESOURCE\fP for details. .UNINDENT .sp For each of these arguments given, the arguments following them only apply to the target or file type specified in the argument. If none is given, the installation properties apply to all target types. If only one is given then only targets of that type will be installed (which can be used to install just a DLL or just an import library.) .sp For regular executables, static libraries and shared libraries, the \fBDESTINATION\fP argument is not required. For these target types, when \fBDESTINATION\fP is omitted, a default destination will be taken from the appropriate variable from \fBGNUInstallDirs\fP, or set to a built\-in default value if that variable is not defined. The same is true for the public and private headers associated with the installed targets through the \fBPUBLIC_HEADER\fP and \fBPRIVATE_HEADER\fP target properties. A destination must always be provided for module libraries, Apple bundles and frameworks. A destination can be omitted for interface and object libraries, but they are handled differently (see the discussion of this topic toward the end of this section). .sp The following table shows the target types with their associated variables and built\-in defaults that apply when no destination is given: .TS center; |l|l|l|. _ T{ Target Type T} T{ GNUInstallDirs Variable T} T{ Built\-In Default T} _ T{ \fBRUNTIME\fP T} T{ \fB${CMAKE_INSTALL_BINDIR}\fP T} T{ \fBbin\fP T} _ T{ \fBLIBRARY\fP T} T{ \fB${CMAKE_INSTALL_LIBDIR}\fP T} T{ \fBlib\fP T} _ T{ \fBARCHIVE\fP T} T{ \fB${CMAKE_INSTALL_LIBDIR}\fP T} T{ \fBlib\fP T} _ T{ \fBPRIVATE_HEADER\fP T} T{ \fB${CMAKE_INSTALL_INCLUDEDIR}\fP T} T{ \fBinclude\fP T} _ T{ \fBPUBLIC_HEADER\fP T} T{ \fB${CMAKE_INSTALL_INCLUDEDIR}\fP T} T{ \fBinclude\fP T} _ .TE .sp Projects wishing to follow the common practice of installing headers into a project\-specific subdirectory will need to provide a destination rather than rely on the above. .sp To make packages compliant with distribution filesystem layout policies, if projects must specify a \fBDESTINATION\fP, it is recommended that they use a path that begins with the appropriate \fBGNUInstallDirs\fP variable. This allows package maintainers to control the install destination by setting the appropriate cache variables. The following example shows a static library being installed to the default destination provided by \fBGNUInstallDirs\fP, but with its headers installed to a project\-specific subdirectory that follows the above recommendation: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(mylib STATIC ...) set_target_properties(mylib PROPERTIES PUBLIC_HEADER mylib.h) include(GNUInstallDirs) install(TARGETS mylib PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/myproj ) .ft P .fi .UNINDENT .UNINDENT .sp In addition to the common options listed above, each target can accept the following additional arguments: .INDENT 0.0 .TP .B \fBNAMELINK_COMPONENT\fP On some platforms a versioned shared library has a symbolic link such as: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C lib<name>.so \-> lib<name>.so.1 .ft P .fi .UNINDENT .UNINDENT .sp where \fBlib<name>.so.1\fP is the soname of the library and \fBlib<name>.so\fP is a "namelink" allowing linkers to find the library when given \fB\-l<name>\fP\&. The \fBNAMELINK_COMPONENT\fP option is similar to the \fBCOMPONENT\fP option, but it changes the installation component of a shared library namelink if one is generated. If not specified, this defaults to the value of \fBCOMPONENT\fP\&. It is an error to use this parameter outside of a \fBLIBRARY\fP block. .sp Consider the following example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C install(TARGETS mylib LIBRARY COMPONENT Libraries NAMELINK_COMPONENT Development PUBLIC_HEADER COMPONENT Development ) .ft P .fi .UNINDENT .UNINDENT .sp In this scenario, if you choose to install only the \fBDevelopment\fP component, both the headers and namelink will be installed without the library. (If you don\(aqt also install the \fBLibraries\fP component, the namelink will be a dangling symlink, and projects that link to the library will have build errors.) If you install only the \fBLibraries\fP component, only the library will be installed, without the headers and namelink. .sp This option is typically used for package managers that have separate runtime and development packages. For example, on Debian systems, the library is expected to be in the runtime package, and the headers and namelink are expected to be in the development package. .sp See the \fBVERSION\fP and \fBSOVERSION\fP target properties for details on creating versioned shared libraries. .TP .B \fBNAMELINK_ONLY\fP This option causes the installation of only the namelink when a library target is installed. On platforms where versioned shared libraries do not have namelinks or when a library is not versioned, the \fBNAMELINK_ONLY\fP option installs nothing. It is an error to use this parameter outside of a \fBLIBRARY\fP block. .sp When \fBNAMELINK_ONLY\fP is given, either \fBNAMELINK_COMPONENT\fP or \fBCOMPONENT\fP may be used to specify the installation component of the namelink, but \fBCOMPONENT\fP should generally be preferred. .TP .B \fBNAMELINK_SKIP\fP Similar to \fBNAMELINK_ONLY\fP, but it has the opposite effect: it causes the installation of library files other than the namelink when a library target is installed. When neither \fBNAMELINK_ONLY\fP or \fBNAMELINK_SKIP\fP are given, both portions are installed. On platforms where versioned shared libraries do not have symlinks or when a library is not versioned, \fBNAMELINK_SKIP\fP installs the library. It is an error to use this parameter outside of a \fBLIBRARY\fP block. .sp If \fBNAMELINK_SKIP\fP is specified, \fBNAMELINK_COMPONENT\fP has no effect. It is not recommended to use \fBNAMELINK_SKIP\fP in conjunction with \fBNAMELINK_COMPONENT\fP\&. .UNINDENT .sp The \fI\%install(TARGETS)\fP command can also accept the following options at the top level: .INDENT 0.0 .TP .B \fBEXPORT\fP This option associates the installed target files with an export called \fB<export\-name>\fP\&. It must appear before any target options. To actually install the export file itself, call \fI\%install(EXPORT)\fP, documented below. See documentation of the \fBEXPORT_NAME\fP target property to change the name of the exported target. .TP .B \fBINCLUDES DESTINATION\fP This option specifies a list of directories which will be added to the \fBINTERFACE_INCLUDE_DIRECTORIES\fP target property of the \fB<targets>\fP when exported by the \fI\%install(EXPORT)\fP command. If a relative path is specified, it is treated as relative to the \fB$<INSTALL_PREFIX>\fP\&. .UNINDENT .sp One or more groups of properties may be specified in a single call to the \fBTARGETS\fP form of this command. A target may be installed more than once to different locations. Consider hypothetical targets \fBmyExe\fP, \fBmySharedLib\fP, and \fBmyStaticLib\fP\&. The code: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install(TARGETS myExe mySharedLib myStaticLib RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib/static) install(TARGETS mySharedLib DESTINATION /some/full/path) .ft P .fi .UNINDENT .UNINDENT .sp will install \fBmyExe\fP to \fB<prefix>/bin\fP and \fBmyStaticLib\fP to \fB<prefix>/lib/static\fP\&. On non\-DLL platforms \fBmySharedLib\fP will be installed to \fB<prefix>/lib\fP and \fB/some/full/path\fP\&. On DLL platforms the \fBmySharedLib\fP DLL will be installed to \fB<prefix>/bin\fP and \fB/some/full/path\fP and its import library will be installed to \fB<prefix>/lib/static\fP and \fB/some/full/path\fP\&. .sp \fIInterface Libraries\fP may be listed among the targets to install. They install no artifacts but will be included in an associated \fBEXPORT\fP\&. If \fIObject Libraries\fP are listed but given no destination for their object files, they will be exported as \fIInterface Libraries\fP\&. This is sufficient to satisfy transitive usage requirements of other targets that link to the object libraries in their implementation. .sp Installing a target with the \fBEXCLUDE_FROM_ALL\fP target property set to \fBTRUE\fP has undefined behavior. .sp \fI\%install(TARGETS)\fP can install targets that were created in other directories. When using such cross\-directory install rules, running \fBmake install\fP (or similar) from a subdirectory will not guarantee that targets from other directories are up\-to\-date. You can use \fBtarget_link_libraries()\fP or \fBadd_dependencies()\fP to ensure that such out\-of\-directory targets are built before the subdirectory\-specific install rules are run. .sp An install destination given as a \fBDESTINATION\fP argument may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. .SS Installing Files .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install(<FILES|PROGRAMS> files... TYPE <type> | DESTINATION <dir> [PERMISSIONS permissions...] [CONFIGURATIONS [Debug|Release|...]] [COMPONENT <component>] [RENAME <name>] [OPTIONAL] [EXCLUDE_FROM_ALL]) .ft P .fi .UNINDENT .UNINDENT .sp The \fBFILES\fP form specifies rules for installing files for a project. File names given as relative paths are interpreted with respect to the current source directory. Files installed by this form are by default given permissions \fBOWNER_WRITE\fP, \fBOWNER_READ\fP, \fBGROUP_READ\fP, and \fBWORLD_READ\fP if no \fBPERMISSIONS\fP argument is given. .sp The \fBPROGRAMS\fP form is identical to the \fBFILES\fP form except that the default permissions for the installed file also include \fBOWNER_EXECUTE\fP, \fBGROUP_EXECUTE\fP, and \fBWORLD_EXECUTE\fP\&. This form is intended to install programs that are not targets, such as shell scripts. Use the \fBTARGETS\fP form to install targets built within the project. .sp The list of \fBfiles...\fP given to \fBFILES\fP or \fBPROGRAMS\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. However, if any item begins in a generator expression it must evaluate to a full path. .sp Either a \fBTYPE\fP or a \fBDESTINATION\fP must be provided, but not both. A \fBTYPE\fP argument specifies the generic file type of the files being installed. A destination will then be set automatically by taking the corresponding variable from \fBGNUInstallDirs\fP, or by using a built\-in default if that variable is not defined. See the table below for the supported file types and their corresponding variables and built\-in defaults. Projects can provide a \fBDESTINATION\fP argument instead of a file type if they wish to explicitly define the install destination. .TS center; |l|l|l|. _ T{ \fBTYPE\fP Argument T} T{ GNUInstallDirs Variable T} T{ Built\-In Default T} _ T{ \fBBIN\fP T} T{ \fB${CMAKE_INSTALL_BINDIR}\fP T} T{ \fBbin\fP T} _ T{ \fBSBIN\fP T} T{ \fB${CMAKE_INSTALL_SBINDIR}\fP T} T{ \fBsbin\fP T} _ T{ \fBLIB\fP T} T{ \fB${CMAKE_INSTALL_LIBDIR}\fP T} T{ \fBlib\fP T} _ T{ \fBINCLUDE\fP T} T{ \fB${CMAKE_INSTALL_INCLUDEDIR}\fP T} T{ \fBinclude\fP T} _ T{ \fBSYSCONF\fP T} T{ \fB${CMAKE_INSTALL_SYSCONFDIR}\fP T} T{ \fBetc\fP T} _ T{ \fBSHAREDSTATE\fP T} T{ \fB${CMAKE_INSTALL_SHARESTATEDIR}\fP T} T{ \fBcom\fP T} _ T{ \fBLOCALSTATE\fP T} T{ \fB${CMAKE_INSTALL_LOCALSTATEDIR}\fP T} T{ \fBvar\fP T} _ T{ \fBRUNSTATE\fP T} T{ \fB${CMAKE_INSTALL_RUNSTATEDIR}\fP T} T{ \fB<LOCALSTATE dir>/run\fP T} _ T{ \fBDATA\fP T} T{ \fB${CMAKE_INSTALL_DATADIR}\fP T} T{ \fB<DATAROOT dir>\fP T} _ T{ \fBINFO\fP T} T{ \fB${CMAKE_INSTALL_INFODIR}\fP T} T{ \fB<DATAROOT dir>/info\fP T} _ T{ \fBLOCALE\fP T} T{ \fB${CMAKE_INSTALL_LOCALEDIR}\fP T} T{ \fB<DATAROOT dir>/locale\fP T} _ T{ \fBMAN\fP T} T{ \fB${CMAKE_INSTALL_MANDIR}\fP T} T{ \fB<DATAROOT dir>/man\fP T} _ T{ \fBDOC\fP T} T{ \fB${CMAKE_INSTALL_DOCDIR}\fP T} T{ \fB<DATAROOT dir>/doc\fP T} _ .TE .sp Projects wishing to follow the common practice of installing headers into a project\-specific subdirectory will need to provide a destination rather than rely on the above. .sp Note that some of the types\(aq built\-in defaults use the \fBDATAROOT\fP directory as a prefix. The \fBDATAROOT\fP prefix is calculated similarly to the types, with \fBCMAKE_INSTALL_DATAROOTDIR\fP as the variable and \fBshare\fP as the built\-in default. You cannot use \fBDATAROOT\fP as a \fBTYPE\fP parameter; please use \fBDATA\fP instead. .sp To make packages compliant with distribution filesystem layout policies, if projects must specify a \fBDESTINATION\fP, it is recommended that they use a path that begins with the appropriate \fBGNUInstallDirs\fP variable. This allows package maintainers to control the install destination by setting the appropriate cache variables. The following example shows how to follow this advice while installing headers to a project\-specific subdirectory: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C include(GNUInstallDirs) install(FILES mylib.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/myproj ) .ft P .fi .UNINDENT .UNINDENT .sp An install destination given as a \fBDESTINATION\fP argument may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. .SS Installing Directories .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install(DIRECTORY dirs... TYPE <type> | DESTINATION <dir> [FILE_PERMISSIONS permissions...] [DIRECTORY_PERMISSIONS permissions...] [USE_SOURCE_PERMISSIONS] [OPTIONAL] [MESSAGE_NEVER] [CONFIGURATIONS [Debug|Release|...]] [COMPONENT <component>] [EXCLUDE_FROM_ALL] [FILES_MATCHING] [[PATTERN <pattern> | REGEX <regex>] [EXCLUDE] [PERMISSIONS permissions...]] [...]) .ft P .fi .UNINDENT .UNINDENT .sp The \fBDIRECTORY\fP form installs contents of one or more directories to a given destination. The directory structure is copied verbatim to the destination. The last component of each directory name is appended to the destination directory but a trailing slash may be used to avoid this because it leaves the last component empty. Directory names given as relative paths are interpreted with respect to the current source directory. If no input directory names are given the destination directory will be created but nothing will be installed into it. The \fBFILE_PERMISSIONS\fP and \fBDIRECTORY_PERMISSIONS\fP options specify permissions given to files and directories in the destination. If \fBUSE_SOURCE_PERMISSIONS\fP is specified and \fBFILE_PERMISSIONS\fP is not, file permissions will be copied from the source directory structure. If no permissions are specified files will be given the default permissions specified in the \fBFILES\fP form of the command, and the directories will be given the default permissions specified in the \fBPROGRAMS\fP form of the command. .sp The \fBMESSAGE_NEVER\fP option disables file installation status output. .sp Installation of directories may be controlled with fine granularity using the \fBPATTERN\fP or \fBREGEX\fP options. These "match" options specify a globbing pattern or regular expression to match directories or files encountered within input directories. They may be used to apply certain options (see below) to a subset of the files and directories encountered. The full path to each input file or directory (with forward slashes) is matched against the expression. A \fBPATTERN\fP will match only complete file names: the portion of the full path matching the pattern must occur at the end of the file name and be preceded by a slash. A \fBREGEX\fP will match any portion of the full path but it may use \fB/\fP and \fB$\fP to simulate the \fBPATTERN\fP behavior. By default all files and directories are installed whether or not they are matched. The \fBFILES_MATCHING\fP option may be given before the first match option to disable installation of files (but not directories) not matched by any expression. For example, the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install(DIRECTORY src/ DESTINATION include/myproj FILES_MATCHING PATTERN "*.h") .ft P .fi .UNINDENT .UNINDENT .sp will extract and install header files from a source tree. .sp Some options may follow a \fBPATTERN\fP or \fBREGEX\fP expression and are applied only to files or directories matching them. The \fBEXCLUDE\fP option will skip the matched file or directory. The \fBPERMISSIONS\fP option overrides the permissions setting for the matched file or directory. For example the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install(DIRECTORY icons scripts/ DESTINATION share/myproj PATTERN "CVS" EXCLUDE PATTERN "scripts/*" PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ) .ft P .fi .UNINDENT .UNINDENT .sp will install the \fBicons\fP directory to \fBshare/myproj/icons\fP and the \fBscripts\fP directory to \fBshare/myproj\fP\&. The icons will get default file permissions, the scripts will be given specific permissions, and any \fBCVS\fP directories will be excluded. .sp Either a \fBTYPE\fP or a \fBDESTINATION\fP must be provided, but not both. A \fBTYPE\fP argument specifies the generic file type of the files within the listed directories being installed. A destination will then be set automatically by taking the corresponding variable from \fBGNUInstallDirs\fP, or by using a built\-in default if that variable is not defined. See the table below for the supported file types and their corresponding variables and built\-in defaults. Projects can provide a \fBDESTINATION\fP argument instead of a file type if they wish to explicitly define the install destination. .TS center; |l|l|l|. _ T{ \fBTYPE\fP Argument T} T{ GNUInstallDirs Variable T} T{ Built\-In Default T} _ T{ \fBBIN\fP T} T{ \fB${CMAKE_INSTALL_BINDIR}\fP T} T{ \fBbin\fP T} _ T{ \fBSBIN\fP T} T{ \fB${CMAKE_INSTALL_SBINDIR}\fP T} T{ \fBsbin\fP T} _ T{ \fBLIB\fP T} T{ \fB${CMAKE_INSTALL_LIBDIR}\fP T} T{ \fBlib\fP T} _ T{ \fBINCLUDE\fP T} T{ \fB${CMAKE_INSTALL_INCLUDEDIR}\fP T} T{ \fBinclude\fP T} _ T{ \fBSYSCONF\fP T} T{ \fB${CMAKE_INSTALL_SYSCONFDIR}\fP T} T{ \fBetc\fP T} _ T{ \fBSHAREDSTATE\fP T} T{ \fB${CMAKE_INSTALL_SHARESTATEDIR}\fP T} T{ \fBcom\fP T} _ T{ \fBLOCALSTATE\fP T} T{ \fB${CMAKE_INSTALL_LOCALSTATEDIR}\fP T} T{ \fBvar\fP T} _ T{ \fBRUNSTATE\fP T} T{ \fB${CMAKE_INSTALL_RUNSTATEDIR}\fP T} T{ \fB<LOCALSTATE dir>/run\fP T} _ T{ \fBDATA\fP T} T{ \fB${CMAKE_INSTALL_DATADIR}\fP T} T{ \fB<DATAROOT dir>\fP T} _ T{ \fBINFO\fP T} T{ \fB${CMAKE_INSTALL_INFODIR}\fP T} T{ \fB<DATAROOT dir>/info\fP T} _ T{ \fBLOCALE\fP T} T{ \fB${CMAKE_INSTALL_LOCALEDIR}\fP T} T{ \fB<DATAROOT dir>/locale\fP T} _ T{ \fBMAN\fP T} T{ \fB${CMAKE_INSTALL_MANDIR}\fP T} T{ \fB<DATAROOT dir>/man\fP T} _ T{ \fBDOC\fP T} T{ \fB${CMAKE_INSTALL_DOCDIR}\fP T} T{ \fB<DATAROOT dir>/doc\fP T} _ .TE .sp Note that some of the types\(aq built\-in defaults use the \fBDATAROOT\fP directory as a prefix. The \fBDATAROOT\fP prefix is calculated similarly to the types, with \fBCMAKE_INSTALL_DATAROOTDIR\fP as the variable and \fBshare\fP as the built\-in default. You cannot use \fBDATAROOT\fP as a \fBTYPE\fP parameter; please use \fBDATA\fP instead. .sp To make packages compliant with distribution filesystem layout policies, if projects must specify a \fBDESTINATION\fP, it is recommended that they use a path that begins with the appropriate \fBGNUInstallDirs\fP variable. This allows package maintainers to control the install destination by setting the appropriate cache variables. .sp The list of \fBdirs...\fP given to \fBDIRECTORY\fP and an install destination given as a \fBDESTINATION\fP argument may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. .SS Custom Installation Logic .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install([[SCRIPT <file>] [CODE <code>]] [COMPONENT <component>] [EXCLUDE_FROM_ALL] [...]) .ft P .fi .UNINDENT .UNINDENT .sp The \fBSCRIPT\fP form will invoke the given CMake script files during installation. If the script file name is a relative path it will be interpreted with respect to the current source directory. The \fBCODE\fP form will invoke the given CMake code during installation. Code is specified as a single argument inside a double\-quoted string. For example, the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install(CODE "MESSAGE(\e"Sample install message.\e")") .ft P .fi .UNINDENT .UNINDENT .sp will print a message during installation. .sp \fB<file>\fP or \fB<code>\fP may use "generator expressions" with the syntax \fB$<...>\fP (in the case of \fB<file>\fP, this refers to their use in the file name, not the file\(aqs contents). See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. .SS Installing Exports .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install(EXPORT <export\-name> DESTINATION <dir> [NAMESPACE <namespace>] [[FILE <name>.cmake]| [PERMISSIONS permissions...] [CONFIGURATIONS [Debug|Release|...]] [EXPORT_LINK_INTERFACE_LIBRARIES] [COMPONENT <component>] [EXCLUDE_FROM_ALL]) install(EXPORT_ANDROID_MK <export\-name> DESTINATION <dir> [...]) .ft P .fi .UNINDENT .UNINDENT .sp The \fBEXPORT\fP form generates and installs a CMake file containing code to import targets from the installation tree into another project. Target installations are associated with the export \fB<export\-name>\fP using the \fBEXPORT\fP option of the \fI\%install(TARGETS)\fP signature documented above. The \fBNAMESPACE\fP option will prepend \fB<namespace>\fP to the target names as they are written to the import file. By default the generated file will be called \fB<export\-name>.cmake\fP but the \fBFILE\fP option may be used to specify a different name. The value given to the \fBFILE\fP option must be a file name with the \fB\&.cmake\fP extension. If a \fBCONFIGURATIONS\fP option is given then the file will only be installed when one of the named configurations is installed. Additionally, the generated import file will reference only the matching target configurations. The \fBEXPORT_LINK_INTERFACE_LIBRARIES\fP keyword, if present, causes the contents of the properties matching \fB(IMPORTED_)?LINK_INTERFACE_LIBRARIES(_<CONFIG>)?\fP to be exported, when policy \fBCMP0022\fP is \fBNEW\fP\&. .sp When a \fBCOMPONENT\fP option is given, the listed \fB<component>\fP implicitly depends on all components mentioned in the export set. The exported \fB<name>.cmake\fP file will require each of the exported components to be present in order for dependent projects to build properly. For example, a project may define components \fBRuntime\fP and \fBDevelopment\fP, with shared libraries going into the \fBRuntime\fP component and static libraries and headers going into the \fBDevelopment\fP component. The export set would also typically be part of the \fBDevelopment\fP component, but it would export targets from both the \fBRuntime\fP and \fBDevelopment\fP components. Therefore, the \fBRuntime\fP component would need to be installed if the \fBDevelopment\fP component was installed, but not vice versa. If the \fBDevelopment\fP component was installed without the \fBRuntime\fP component, dependent projects that try to link against it would have build errors. Package managers, such as APT and RPM, typically handle this by listing the \fBRuntime\fP component as a dependency of the \fBDevelopment\fP component in the package metadata, ensuring that the library is always installed if the headers and CMake export file are present. .sp In addition to cmake language files, the \fBEXPORT_ANDROID_MK\fP mode maybe used to specify an export to the android ndk build system. This mode accepts the same options as the normal export mode. The Android NDK supports the use of prebuilt libraries, both static and shared. This allows cmake to build the libraries of a project and make them available to an ndk build system complete with transitive dependencies, include flags and defines required to use the libraries. .sp The \fBEXPORT\fP form is useful to help outside projects use targets built and installed by the current project. For example, the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install(TARGETS myexe EXPORT myproj DESTINATION bin) install(EXPORT myproj NAMESPACE mp_ DESTINATION lib/myproj) install(EXPORT_ANDROID_MK myproj DESTINATION share/ndk\-modules) .ft P .fi .UNINDENT .UNINDENT .sp will install the executable \fBmyexe\fP to \fB<prefix>/bin\fP and code to import it in the file \fB<prefix>/lib/myproj/myproj.cmake\fP and \fB<prefix>/share/ndk\-modules/Android.mk\fP\&. An outside project may load this file with the include command and reference the \fBmyexe\fP executable from the installation tree using the imported target name \fBmp_myexe\fP as if the target were built in its own tree. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 This command supercedes the \fBinstall_targets()\fP command and the \fBPRE_INSTALL_SCRIPT\fP and \fBPOST_INSTALL_SCRIPT\fP target properties. It also replaces the \fBFILES\fP forms of the \fBinstall_files()\fP and \fBinstall_programs()\fP commands. The processing order of these install rules relative to those generated by \fBinstall_targets()\fP, \fBinstall_files()\fP, and \fBinstall_programs()\fP commands is not defined. .UNINDENT .UNINDENT .SS Generated Installation Script .sp The \fBinstall()\fP command generates a file, \fBcmake_install.cmake\fP, inside the build directory, which is used internally by the generated install target and by CPack. You can also invoke this script manually with \fBcmake \-P\fP\&. This script accepts several variables: .INDENT 0.0 .TP .B \fBCOMPONENT\fP Set this variable to install only a single CPack component as opposed to all of them. For example, if you only want to install the \fBDevelopment\fP component, run \fBcmake \-DCOMPONENT=Development \-P cmake_install.cmake\fP\&. .TP .B \fBBUILD_TYPE\fP Set this variable to change the build type if you are using a multi\-config generator. For example, to install with the \fBDebug\fP configuration, run \fBcmake \-DBUILD_TYPE=Debug \-P cmake_install.cmake\fP\&. .TP .B \fBDESTDIR\fP This is an environment variable rather than a CMake variable. It allows you to change the installation prefix on UNIX systems. See \fBDESTDIR\fP for details. .UNINDENT .SS link_directories .sp Add directories in which the linker will look for libraries. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C link_directories([AFTER|BEFORE] directory1 [directory2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp Adds the paths in which the linker should search for libraries. Relative paths given to this command are interpreted as relative to the current source directory, see \fBCMP0015\fP\&. .sp The directories are added to the \fBLINK_DIRECTORIES\fP directory property for the current \fBCMakeLists.txt\fP file, converting relative paths to absolute as needed. The command will apply only to targets created after it is called. .sp By default the directories specified are appended onto the current list of directories. This default behavior can be changed by setting \fBCMAKE_LINK_DIRECTORIES_BEFORE\fP to \fBON\fP\&. By using \fBAFTER\fP or \fBBEFORE\fP explicitly, you can select between appending and prepending, independent of the default. .sp Arguments to \fBlink_directories\fP may use "generator expressions" with the syntax "$<...>". See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 This command is rarely necessary and should be avoided where there are other choices. Prefer to pass full absolute paths to libraries where possible, since this ensures the correct library will always be linked. The \fBfind_library()\fP command provides the full path, which can generally be used directly in calls to \fBtarget_link_libraries()\fP\&. Situations where a library search path may be needed include: .INDENT 0.0 .IP \(bu 2 Project generators like Xcode where the user can switch target architecture at build time, but a full path to a library cannot be used because it only provides one architecture (i.e. it is not a universal binary). .IP \(bu 2 Libraries may themselves have other private library dependencies that expect to be found via \fBRPATH\fP mechanisms, but some linkers are not able to fully decode those paths (e.g. due to the presence of things like \fB$ORIGIN\fP). .UNINDENT .sp If a library search path must be provided, prefer to localize the effect where possible by using the \fBtarget_link_directories()\fP command rather than \fBlink_directories()\fP\&. The target\-specific command can also control how the search directories propagate to other dependent targets. .UNINDENT .UNINDENT .SS link_libraries .sp Link libraries to all targets added later. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C link_libraries([item1 [item2 [...]]] [[debug|optimized|general] <item>] ...) .ft P .fi .UNINDENT .UNINDENT .sp Specify libraries or flags to use when linking any targets created later in the current directory or below by commands such as \fBadd_executable()\fP or \fBadd_library()\fP\&. See the \fBtarget_link_libraries()\fP command for meaning of arguments. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 The \fBtarget_link_libraries()\fP command should be preferred whenever possible. Library dependencies are chained automatically, so directory\-wide specification of link libraries is rarely needed. .UNINDENT .UNINDENT .SS load_cache .sp Load in the values from another project\(aqs CMake cache. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C load_cache(pathToCacheFile READ_WITH_PREFIX prefix entry1...) .ft P .fi .UNINDENT .UNINDENT .sp Reads the cache and store the requested entries in variables with their name prefixed with the given prefix. This only reads the values, and does not create entries in the local project\(aqs cache. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C load_cache(pathToCacheFile [EXCLUDE entry1...] [INCLUDE_INTERNALS entry1...]) .ft P .fi .UNINDENT .UNINDENT .sp Loads in the values from another cache and store them in the local project\(aqs cache as internal entries. This is useful for a project that depends on another project built in a different tree. \fBEXCLUDE\fP option can be used to provide a list of entries to be excluded. \fBINCLUDE_INTERNALS\fP can be used to provide a list of internal entries to be included. Normally, no internal entries are brought in. Use of this form of the command is strongly discouraged, but it is provided for backward compatibility. .SS project .sp Set the name of the project. .SS Synopsis .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C project(<PROJECT\-NAME> [<language\-name>...]) project(<PROJECT\-NAME> [VERSION <major>[.<minor>[.<patch>[.<tweak>]]]] [DESCRIPTION <project\-description\-string>] [HOMEPAGE_URL <url\-string>] [LANGUAGES <language\-name>...]) .ft P .fi .UNINDENT .UNINDENT .sp Sets the name of the project, and stores it in the variable \fBPROJECT_NAME\fP\&. When called from the top\-level \fBCMakeLists.txt\fP also stores the project name in the variable \fBCMAKE_PROJECT_NAME\fP\&. .sp Also sets the variables .INDENT 0.0 .IP \(bu 2 \fBPROJECT_SOURCE_DIR\fP, \fB<PROJECT\-NAME>_SOURCE_DIR\fP .IP \(bu 2 \fBPROJECT_BINARY_DIR\fP, \fB<PROJECT\-NAME>_BINARY_DIR\fP .UNINDENT .sp Further variables are set by the optional arguments described in the following. If any of these arguments is not used, then the corresponding variables are set to the empty string. .SS Options .sp The options are: .INDENT 0.0 .TP .B \fBVERSION <version>\fP Optional; may not be used unless policy \fBCMP0048\fP is set to \fBNEW\fP\&. .sp Takes a \fB<version>\fP argument composed of non\-negative integer components, i.e. \fB<major>[.<minor>[.<patch>[.<tweak>]]]\fP, and sets the variables .INDENT 7.0 .IP \(bu 2 \fBPROJECT_VERSION\fP, \fB<PROJECT\-NAME>_VERSION\fP .IP \(bu 2 \fBPROJECT_VERSION_MAJOR\fP, \fB<PROJECT\-NAME>_VERSION_MAJOR\fP .IP \(bu 2 \fBPROJECT_VERSION_MINOR\fP, \fB<PROJECT\-NAME>_VERSION_MINOR\fP .IP \(bu 2 \fBPROJECT_VERSION_PATCH\fP, \fB<PROJECT\-NAME>_VERSION_PATCH\fP .IP \(bu 2 \fBPROJECT_VERSION_TWEAK\fP, \fB<PROJECT\-NAME>_VERSION_TWEAK\fP\&. .UNINDENT .sp When the \fBproject()\fP command is called from the top\-level \fBCMakeLists.txt\fP, then the version is also stored in the variable \fBCMAKE_PROJECT_VERSION\fP\&. .TP .B \fBDESCRIPTION <project\-description\-string>\fP Optional. Sets the variables .INDENT 7.0 .IP \(bu 2 \fBPROJECT_DESCRIPTION\fP, \fB<PROJECT\-NAME>_DESCRIPTION\fP .UNINDENT .sp to \fB<project\-description\-string>\fP\&. It is recommended that this description is a relatively short string, usually no more than a few words. .sp When the \fBproject()\fP command is called from the top\-level \fBCMakeLists.txt\fP, then the description is also stored in the variable \fBCMAKE_PROJECT_DESCRIPTION\fP\&. .TP .B \fBHOMEPAGE_URL <url\-string>\fP Optional. Sets the variables .INDENT 7.0 .IP \(bu 2 \fBPROJECT_HOMEPAGE_URL\fP, \fB<PROJECT\-NAME>_HOMEPAGE_URL\fP .UNINDENT .sp to \fB<url\-string>\fP, which should be the canonical home URL for the project. .sp When the \fBproject()\fP command is called from the top\-level \fBCMakeLists.txt\fP, then the URL also is stored in the variable \fBCMAKE_PROJECT_HOMEPAGE_URL\fP\&. .TP .B \fBLANGUAGES <language\-name>...\fP Optional. Can also be specified without \fBLANGUAGES\fP keyword per the first, short signature. .sp Selects which programming languages are needed to build the project. Supported languages include \fBC\fP, \fBCXX\fP (i.e. C++), \fBCUDA\fP, \fBFortran\fP, and \fBASM\fP\&. By default \fBC\fP and \fBCXX\fP are enabled if no language options are given. Specify language \fBNONE\fP, or use the \fBLANGUAGES\fP keyword and list no languages, to skip enabling any languages. .sp If enabling \fBASM\fP, list it last so that CMake can check whether compilers for other languages like \fBC\fP work for assembly too. .UNINDENT .sp The variables set through the \fBVERSION\fP, \fBDESCRIPTION\fP and \fBHOMEPAGE_URL\fP options are intended for use as default values in package metadata and documentation. .SS Code Injection .sp If the \fBCMAKE_PROJECT_INCLUDE_BEFORE\fP variable is set, the file pointed to by that variable will be included as the first step of the \fBproject()\fP command. .sp If the \fBCMAKE_PROJECT_INCLUDE\fP or \fBCMAKE_PROJECT_<PROJECT\-NAME>_INCLUDE\fP variables are set, the files they point to will be included as the last step of the \fBproject()\fP command. If both are set, then \fBCMAKE_PROJECT_INCLUDE\fP will be included before \fBCMAKE_PROJECT_<PROJECT\-NAME>_INCLUDE\fP\&. .SS Usage .sp The top\-level \fBCMakeLists.txt\fP file for a project must contain a literal, direct call to the \fBproject()\fP command; loading one through the \fBinclude()\fP command is not sufficient. If no such call exists, CMake will issue a warning and pretend there is a \fBproject(Project)\fP at the top to enable the default languages (\fBC\fP and \fBCXX\fP). .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 Call the \fBproject()\fP command near the top of the top\-level \fBCMakeLists.txt\fP, but \fIafter\fP calling \fBcmake_minimum_required()\fP\&. It is important to establish version and policy settings before invoking other commands whose behavior they may affect. See also policy \fBCMP0000\fP\&. .UNINDENT .UNINDENT .SS remove_definitions .sp Remove \-D define flags added by \fBadd_definitions()\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C remove_definitions(\-DFOO \-DBAR ...) .ft P .fi .UNINDENT .UNINDENT .sp Removes flags (added by \fBadd_definitions()\fP) from the compiler command line for sources in the current directory and below. .SS set_source_files_properties .sp Source files can have properties that affect how they are built. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set_source_files_properties([file1 [file2 [...]]] PROPERTIES prop1 value1 [prop2 value2 [...]]) .ft P .fi .UNINDENT .UNINDENT .sp Sets properties associated with source files using a key/value paired list. .sp See also the \fBset_property(SOURCE)\fP command. .sp See \fISource File Properties\fP for the list of properties known to CMake. Source file properties are visible only to targets added in the same directory (\fBCMakeLists.txt\fP). .SS set_target_properties .sp Targets can have properties that affect how they are built. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set_target_properties(target1 target2 ... PROPERTIES prop1 value1 prop2 value2 ...) .ft P .fi .UNINDENT .UNINDENT .sp Sets properties on targets. The syntax for the command is to list all the targets you want to change, and then provide the values you want to set next. You can use any prop value pair you want and extract it later with the \fBget_property()\fP or \fBget_target_property()\fP command. .sp See also the \fBset_property(TARGET)\fP command. .sp See \fITarget Properties\fP for the list of properties known to CMake. .SS set_tests_properties .sp Set a property of the tests. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set_tests_properties(test1 [test2...] PROPERTIES prop1 value1 prop2 value2) .ft P .fi .UNINDENT .UNINDENT .sp Sets a property for the tests. If the test is not found, CMake will report an error. \fBGenerator expressions\fP will be expanded the same as supported by the test\(aqs \fBadd_test()\fP call. .sp See also the \fBset_property(TEST)\fP command. .sp See \fITest Properties\fP for the list of properties known to CMake. .SS source_group .sp Define a grouping for source files in IDE project generation. There are two different signatures to create source groups. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C source_group(<name> [FILES <src>...] [REGULAR_EXPRESSION <regex>]) source_group(TREE <root> [PREFIX <prefix>] [FILES <src>...]) .ft P .fi .UNINDENT .UNINDENT .sp Defines a group into which sources will be placed in project files. This is intended to set up file tabs in Visual Studio. The options are: .INDENT 0.0 .TP .B \fBTREE\fP CMake will automatically detect, from \fB<src>\fP files paths, source groups it needs to create, to keep structure of source groups analogically to the actual files and directories structure in the project. Paths of \fB<src>\fP files will be cut to be relative to \fB<root>\fP\&. .TP .B \fBPREFIX\fP Source group and files located directly in \fB<root>\fP path, will be placed in \fB<prefix>\fP source groups. .TP .B \fBFILES\fP Any source file specified explicitly will be placed in group \fB<name>\fP\&. Relative paths are interpreted with respect to the current source directory. .TP .B \fBREGULAR_EXPRESSION\fP Any source file whose name matches the regular expression will be placed in group \fB<name>\fP\&. .UNINDENT .sp If a source file matches multiple groups, the \fIlast\fP group that explicitly lists the file with \fBFILES\fP will be favored, if any. If no group explicitly lists the file, the \fIlast\fP group whose regular expression matches the file will be favored. .sp The \fB<name>\fP of the group and \fB<prefix>\fP argument may contain backslashes to specify subgroups: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C source_group(outer\e\einner ...) source_group(TREE <root> PREFIX sources\e\einc ...) .ft P .fi .UNINDENT .UNINDENT .sp For backwards compatibility, the short\-hand signature .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C source_group(<name> <regex>) .ft P .fi .UNINDENT .UNINDENT .sp is equivalent to .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C source_group(<name> REGULAR_EXPRESSION <regex>) .ft P .fi .UNINDENT .UNINDENT .SS target_compile_definitions .sp Add compile definitions to a target. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_compile_definitions(<target> <INTERFACE|PUBLIC|PRIVATE> [items1...] [<INTERFACE|PUBLIC|PRIVATE> [items2...] ...]) .ft P .fi .UNINDENT .UNINDENT .sp Specifies compile definitions to use when compiling a given \fB<target>\fP\&. The named \fB<target>\fP must have been created by a command such as \fBadd_executable()\fP or \fBadd_library()\fP and must not be an \fIALIAS target\fP\&. .sp The \fBINTERFACE\fP, \fBPUBLIC\fP and \fBPRIVATE\fP keywords are required to specify the scope of the following arguments. \fBPRIVATE\fP and \fBPUBLIC\fP items will populate the \fBCOMPILE_DEFINITIONS\fP property of \fB<target>\fP\&. \fBPUBLIC\fP and \fBINTERFACE\fP items will populate the \fBINTERFACE_COMPILE_DEFINITIONS\fP property of \fB<target>\fP\&. (\fIIMPORTED targets\fP only support \fBINTERFACE\fP items.) The following arguments specify compile definitions. Repeated calls for the same \fB<target>\fP append items in the order called. .sp Arguments to \fBtarget_compile_definitions\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp Any leading \fB\-D\fP on an item will be removed. Empty items are ignored. For example, the following are all equivalent: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_compile_definitions(foo PUBLIC FOO) target_compile_definitions(foo PUBLIC \-DFOO) # \-D removed target_compile_definitions(foo PUBLIC "" FOO) # "" ignored target_compile_definitions(foo PUBLIC \-D FOO) # \-D becomes "", then ignored .ft P .fi .UNINDENT .UNINDENT .SS target_compile_features .sp Add expected compiler features to a target. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_compile_features(<target> <PRIVATE|PUBLIC|INTERFACE> <feature> [...]) .ft P .fi .UNINDENT .UNINDENT .sp Specifies compiler features required when compiling a given target. If the feature is not listed in the \fBCMAKE_C_COMPILE_FEATURES\fP variable or \fBCMAKE_CXX_COMPILE_FEATURES\fP variable, then an error will be reported by CMake. If the use of the feature requires an additional compiler flag, such as \fB\-std=gnu++11\fP, the flag will be added automatically. .sp The \fBINTERFACE\fP, \fBPUBLIC\fP and \fBPRIVATE\fP keywords are required to specify the scope of the features. \fBPRIVATE\fP and \fBPUBLIC\fP items will populate the \fBCOMPILE_FEATURES\fP property of \fB<target>\fP\&. \fBPUBLIC\fP and \fBINTERFACE\fP items will populate the \fBINTERFACE_COMPILE_FEATURES\fP property of \fB<target>\fP\&. (\fIIMPORTED targets\fP only support \fBINTERFACE\fP items.) Repeated calls for the same \fB<target>\fP append items. .sp The named \fB<target>\fP must have been created by a command such as \fBadd_executable()\fP or \fBadd_library()\fP and must not be an \fIALIAS target\fP\&. .sp Arguments to \fBtarget_compile_features\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-compile\-features(7)\fP manual for information on compile features and a list of supported compilers. .SS target_compile_options .sp Add compile options to a target. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_compile_options(<target> [BEFORE] <INTERFACE|PUBLIC|PRIVATE> [items1...] [<INTERFACE|PUBLIC|PRIVATE> [items2...] ...]) .ft P .fi .UNINDENT .UNINDENT .sp Adds options to the \fBCOMPILE_OPTIONS\fP or \fBINTERFACE_COMPILE_OPTIONS\fP target properties. These options are used when compiling the given \fB<target>\fP, which must have been created by a command such as \fBadd_executable()\fP or \fBadd_library()\fP and must not be an \fIALIAS target\fP\&. .SS Arguments .sp If \fBBEFORE\fP is specified, the content will be prepended to the property instead of being appended. .sp The \fBINTERFACE\fP, \fBPUBLIC\fP and \fBPRIVATE\fP keywords are required to specify the scope of the following arguments. \fBPRIVATE\fP and \fBPUBLIC\fP items will populate the \fBCOMPILE_OPTIONS\fP property of \fB<target>\fP\&. \fBPUBLIC\fP and \fBINTERFACE\fP items will populate the \fBINTERFACE_COMPILE_OPTIONS\fP property of \fB<target>\fP\&. (\fIIMPORTED targets\fP only support \fBINTERFACE\fP items.) The following arguments specify compile options. Repeated calls for the same \fB<target>\fP append items in the order called. .sp Arguments to \fBtarget_compile_options\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp The final set of compile or link options used for a target is constructed by accumulating options from the current target and the usage requirements of it dependencies. The set of options is de\-duplicated to avoid repetition. While beneficial for individual options, the de\-duplication step can break up option groups. For example, \fB\-D A \-D B\fP becomes \fB\-D A B\fP\&. One may specify a group of options using shell\-like quoting along with a \fBSHELL:\fP prefix. The \fBSHELL:\fP prefix is dropped and the rest of the option string is parsed using the \fBseparate_arguments()\fP \fBUNIX_COMMAND\fP mode. For example, \fB"SHELL:\-D A" "SHELL:\-D B"\fP becomes \fB\-D A \-D B\fP\&. .SS See Also .sp This command can be used to add any options. However, for adding preprocessor definitions and include directories it is recommended to use the more specific commands \fBtarget_compile_definitions()\fP and \fBtarget_include_directories()\fP\&. .sp For directory\-wide settings, there is the command \fBadd_compile_options()\fP\&. .SS target_include_directories .sp Add include directories to a target. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_include_directories(<target> [SYSTEM] [BEFORE] <INTERFACE|PUBLIC|PRIVATE> [items1...] [<INTERFACE|PUBLIC|PRIVATE> [items2...] ...]) .ft P .fi .UNINDENT .UNINDENT .sp Specifies include directories to use when compiling a given target. The named \fB<target>\fP must have been created by a command such as \fBadd_executable()\fP or \fBadd_library()\fP and must not be an \fIALIAS target\fP\&. .sp If \fBBEFORE\fP is specified, the content will be prepended to the property instead of being appended. .sp The \fBINTERFACE\fP, \fBPUBLIC\fP and \fBPRIVATE\fP keywords are required to specify the scope of the following arguments. \fBPRIVATE\fP and \fBPUBLIC\fP items will populate the \fBINCLUDE_DIRECTORIES\fP property of \fB<target>\fP\&. \fBPUBLIC\fP and \fBINTERFACE\fP items will populate the \fBINTERFACE_INCLUDE_DIRECTORIES\fP property of \fB<target>\fP\&. (\fIIMPORTED targets\fP only support \fBINTERFACE\fP items.) The following arguments specify include directories. .sp Specified include directories may be absolute paths or relative paths. Repeated calls for the same <target> append items in the order called. If \fBSYSTEM\fP is specified, the compiler will be told the directories are meant as system include directories on some platforms (signalling this setting might achieve effects such as the compiler skipping warnings, or these fixed\-install system files not being considered in dependency calculations \- see compiler docs). If \fBSYSTEM\fP is used together with \fBPUBLIC\fP or \fBINTERFACE\fP, the \fBINTERFACE_SYSTEM_INCLUDE_DIRECTORIES\fP target property will be populated with the specified directories. .sp Arguments to \fBtarget_include_directories\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp Include directories usage requirements commonly differ between the build\-tree and the install\-tree. The \fBBUILD_INTERFACE\fP and \fBINSTALL_INTERFACE\fP generator expressions can be used to describe separate usage requirements based on the usage location. Relative paths are allowed within the \fBINSTALL_INTERFACE\fP expression and are interpreted relative to the installation prefix. For example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_include_directories(mylib PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include/mylib> $<INSTALL_INTERFACE:include/mylib> # <prefix>/include/mylib ) .ft P .fi .UNINDENT .UNINDENT .SS Creating Relocatable Packages .sp Note that it is not advisable to populate the \fBINSTALL_INTERFACE\fP of the \fBINTERFACE_INCLUDE_DIRECTORIES\fP of a target with absolute paths to the include directories of dependencies. That would hard\-code into installed packages the include directory paths for dependencies \fBas found on the machine the package was made on\fP\&. .sp The \fBINSTALL_INTERFACE\fP of the \fBINTERFACE_INCLUDE_DIRECTORIES\fP is only suitable for specifying the required include directories for headers provided with the target itself, not those provided by the transitive dependencies listed in its \fBINTERFACE_LINK_LIBRARIES\fP target property. Those dependencies should themselves be targets that specify their own header locations in \fBINTERFACE_INCLUDE_DIRECTORIES\fP\&. .sp See the \fICreating Relocatable Packages\fP section of the \fBcmake\-packages(7)\fP manual for discussion of additional care that must be taken when specifying usage requirements while creating packages for redistribution. .SS target_link_directories .sp Add link directories to a target. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_directories(<target> [BEFORE] <INTERFACE|PUBLIC|PRIVATE> [items1...] [<INTERFACE|PUBLIC|PRIVATE> [items2...] ...]) .ft P .fi .UNINDENT .UNINDENT .sp Specifies the paths in which the linker should search for libraries when linking a given target. Each item can be an absolute or relative path, with the latter being interpreted as relative to the current source directory. These items will be added to the link command. .sp The named \fB<target>\fP must have been created by a command such as \fBadd_executable()\fP or \fBadd_library()\fP and must not be an \fIALIAS target\fP\&. .sp The \fBINTERFACE\fP, \fBPUBLIC\fP and \fBPRIVATE\fP keywords are required to specify the scope of the items that follow them. \fBPRIVATE\fP and \fBPUBLIC\fP items will populate the \fBLINK_DIRECTORIES\fP property of \fB<target>\fP\&. \fBPUBLIC\fP and \fBINTERFACE\fP items will populate the \fBINTERFACE_LINK_DIRECTORIES\fP property of \fB<target>\fP (\fIIMPORTED targets\fP only support \fBINTERFACE\fP items). Each item specifies a link directory and will be converted to an absolute path if necessary before adding it to the relevant property. Repeated calls for the same \fB<target>\fP append items in the order called. .sp If \fBBEFORE\fP is specified, the content will be prepended to the relevant property instead of being appended. .sp Arguments to \fBtarget_link_directories\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 This command is rarely necessary and should be avoided where there are other choices. Prefer to pass full absolute paths to libraries where possible, since this ensures the correct library will always be linked. The \fBfind_library()\fP command provides the full path, which can generally be used directly in calls to \fBtarget_link_libraries()\fP\&. Situations where a library search path may be needed include: .INDENT 0.0 .IP \(bu 2 Project generators like Xcode where the user can switch target architecture at build time, but a full path to a library cannot be used because it only provides one architecture (i.e. it is not a universal binary). .IP \(bu 2 Libraries may themselves have other private library dependencies that expect to be found via \fBRPATH\fP mechanisms, but some linkers are not able to fully decode those paths (e.g. due to the presence of things like \fB$ORIGIN\fP). .UNINDENT .UNINDENT .UNINDENT .SS target_link_libraries .sp Specify libraries or flags to use when linking a given target and/or its dependents. \fIUsage requirements\fP from linked library targets will be propagated. Usage requirements of a target\(aqs dependencies affect compilation of its own sources. .SS Overview .sp This command has several signatures as detailed in subsections below. All of them have the general form .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_libraries(<target> ... <item>... ...) .ft P .fi .UNINDENT .UNINDENT .sp The named \fB<target>\fP must have been created by a command such as \fBadd_executable()\fP or \fBadd_library()\fP and must not be an \fIALIAS target\fP\&. If policy \fBCMP0079\fP is not set to \fBNEW\fP then the target must have been created in the current directory. Repeated calls for the same \fB<target>\fP append items in the order called. .sp Each \fB<item>\fP may be: .INDENT 0.0 .IP \(bu 2 \fBA library target name\fP: The generated link line will have the full path to the linkable library file associated with the target. The buildsystem will have a dependency to re\-link \fB<target>\fP if the library file changes. .sp The named target must be created by \fBadd_library()\fP within the project or as an \fIIMPORTED library\fP\&. If it is created within the project an ordering dependency will automatically be added in the build system to make sure the named library target is up\-to\-date before the \fB<target>\fP links. .sp If an imported library has the \fBIMPORTED_NO_SONAME\fP target property set, CMake may ask the linker to search for the library instead of using the full path (e.g. \fB/usr/lib/libfoo.so\fP becomes \fB\-lfoo\fP). .sp The full path to the target\(aqs artifact will be quoted/escaped for the shell automatically. .IP \(bu 2 \fBA full path to a library file\fP: The generated link line will normally preserve the full path to the file. The buildsystem will have a dependency to re\-link \fB<target>\fP if the library file changes. .sp There are some cases where CMake may ask the linker to search for the library (e.g. \fB/usr/lib/libfoo.so\fP becomes \fB\-lfoo\fP), such as when a shared library is detected to have no \fBSONAME\fP field. See policy \fBCMP0060\fP for discussion of another case. .sp If the library file is in a macOS framework, the \fBHeaders\fP directory of the framework will also be processed as a \fIusage requirement\fP\&. This has the same effect as passing the framework directory as an include directory. .sp On \fIVisual Studio Generators\fP for VS 2010 and above, library files ending in \fB\&.targets\fP will be treated as MSBuild targets files and imported into generated project files. This is not supported by other generators. .sp The full path to the library file will be quoted/escaped for the shell automatically. .IP \(bu 2 \fBA plain library name\fP: The generated link line will ask the linker to search for the library (e.g. \fBfoo\fP becomes \fB\-lfoo\fP or \fBfoo.lib\fP). .sp The library name/flag is treated as a command\-line string fragment and will be used with no extra quoting or escaping. .IP \(bu 2 \fBA link flag\fP: Item names starting with \fB\-\fP, but not \fB\-l\fP or \fB\-framework\fP, are treated as linker flags. Note that such flags will be treated like any other library link item for purposes of transitive dependencies, so they are generally safe to specify only as private link items that will not propagate to dependents. .sp Link flags specified here are inserted into the link command in the same place as the link libraries. This might not be correct, depending on the linker. Use the \fBLINK_OPTIONS\fP target property or \fBtarget_link_options()\fP command to add link flags explicitly. The flags will then be placed at the toolchain\-defined flag position in the link command. .sp The link flag is treated as a command\-line string fragment and will be used with no extra quoting or escaping. .IP \(bu 2 \fBA generator expression\fP: A \fB$<...>\fP \fBgenerator expression\fP may evaluate to any of the above items or to a \fIsemicolon\-separated list\fP of them. If the \fB\&...\fP contains any \fB;\fP characters, e.g. after evaluation of a \fB${list}\fP variable, be sure to use an explicitly quoted argument \fB"$<...>"\fP so that this command receives it as a single \fB<item>\fP\&. .sp Additionally, a generator expression may be used as a fragment of any of the above items, e.g. \fBfoo$<1:_d>\fP\&. .sp Note that generator expressions will not be used in OLD handling of policy \fBCMP0003\fP or policy \fBCMP0004\fP\&. .IP \(bu 2 A \fBdebug\fP, \fBoptimized\fP, or \fBgeneral\fP keyword immediately followed by another \fB<item>\fP\&. The item following such a keyword will be used only for the corresponding build configuration. The \fBdebug\fP keyword corresponds to the \fBDebug\fP configuration (or to configurations named in the \fBDEBUG_CONFIGURATIONS\fP global property if it is set). The \fBoptimized\fP keyword corresponds to all other configurations. The \fBgeneral\fP keyword corresponds to all configurations, and is purely optional. Higher granularity may be achieved for per\-configuration rules by creating and linking to \fIIMPORTED library targets\fP\&. These keywords are interpreted immediately by this command and therefore have no special meaning when produced by a generator expression. .UNINDENT .sp Items containing \fB::\fP, such as \fBFoo::Bar\fP, are assumed to be \fIIMPORTED\fP or \fIALIAS\fP library target names and will cause an error if no such target exists. See policy \fBCMP0028\fP\&. .sp See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .SS Libraries for a Target and/or its Dependents .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_libraries(<target> <PRIVATE|PUBLIC|INTERFACE> <item>... [<PRIVATE|PUBLIC|INTERFACE> <item>...]...) .ft P .fi .UNINDENT .UNINDENT .sp The \fBPUBLIC\fP, \fBPRIVATE\fP and \fBINTERFACE\fP keywords can be used to specify both the link dependencies and the link interface in one command. Libraries and targets following \fBPUBLIC\fP are linked to, and are made part of the link interface. Libraries and targets following \fBPRIVATE\fP are linked to, but are not made part of the link interface. Libraries following \fBINTERFACE\fP are appended to the link interface and are not used for linking \fB<target>\fP\&. .SS Libraries for both a Target and its Dependents .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_libraries(<target> <item>...) .ft P .fi .UNINDENT .UNINDENT .sp Library dependencies are transitive by default with this signature. When this target is linked into another target then the libraries linked to this target will appear on the link line for the other target too. This transitive "link interface" is stored in the \fBINTERFACE_LINK_LIBRARIES\fP target property and may be overridden by setting the property directly. When \fBCMP0022\fP is not set to \fBNEW\fP, transitive linking is built in but may be overridden by the \fBLINK_INTERFACE_LIBRARIES\fP property. Calls to other signatures of this command may set the property making any libraries linked exclusively by this signature private. .SS Libraries for a Target and/or its Dependents (Legacy) .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_libraries(<target> <LINK_PRIVATE|LINK_PUBLIC> <lib>... [<LINK_PRIVATE|LINK_PUBLIC> <lib>...]...) .ft P .fi .UNINDENT .UNINDENT .sp The \fBLINK_PUBLIC\fP and \fBLINK_PRIVATE\fP modes can be used to specify both the link dependencies and the link interface in one command. .sp This signature is for compatibility only. Prefer the \fBPUBLIC\fP or \fBPRIVATE\fP keywords instead. .sp Libraries and targets following \fBLINK_PUBLIC\fP are linked to, and are made part of the \fBINTERFACE_LINK_LIBRARIES\fP\&. If policy \fBCMP0022\fP is not \fBNEW\fP, they are also made part of the \fBLINK_INTERFACE_LIBRARIES\fP\&. Libraries and targets following \fBLINK_PRIVATE\fP are linked to, but are not made part of the \fBINTERFACE_LINK_LIBRARIES\fP (or \fBLINK_INTERFACE_LIBRARIES\fP). .SS Libraries for Dependents Only (Legacy) .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_libraries(<target> LINK_INTERFACE_LIBRARIES <item>...) .ft P .fi .UNINDENT .UNINDENT .sp The \fBLINK_INTERFACE_LIBRARIES\fP mode appends the libraries to the \fBINTERFACE_LINK_LIBRARIES\fP target property instead of using them for linking. If policy \fBCMP0022\fP is not \fBNEW\fP, then this mode also appends libraries to the \fBLINK_INTERFACE_LIBRARIES\fP and its per\-configuration equivalent. .sp This signature is for compatibility only. Prefer the \fBINTERFACE\fP mode instead. .sp Libraries specified as \fBdebug\fP are wrapped in a generator expression to correspond to debug builds. If policy \fBCMP0022\fP is not \fBNEW\fP, the libraries are also appended to the \fBLINK_INTERFACE_LIBRARIES_DEBUG\fP property (or to the properties corresponding to configurations listed in the \fBDEBUG_CONFIGURATIONS\fP global property if it is set). Libraries specified as \fBoptimized\fP are appended to the \fBINTERFACE_LINK_LIBRARIES\fP property. If policy \fBCMP0022\fP is not \fBNEW\fP, they are also appended to the \fBLINK_INTERFACE_LIBRARIES\fP property. Libraries specified as \fBgeneral\fP (or without any keyword) are treated as if specified for both \fBdebug\fP and \fBoptimized\fP\&. .SS Linking Object Libraries .sp \fIObject Libraries\fP may be used as the \fB<target>\fP (first) argument of \fBtarget_link_libraries\fP to specify dependencies of their sources on other libraries. For example, the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(A SHARED a.c) target_compile_definitions(A PUBLIC A) add_library(obj OBJECT obj.c) target_compile_definitions(obj PUBLIC OBJ) target_link_libraries(obj PUBLIC A) .ft P .fi .UNINDENT .UNINDENT .sp compiles \fBobj.c\fP with \fB\-DA \-DOBJ\fP and establishes usage requirements for \fBobj\fP that propagate to its dependents. .sp Normal libraries and executables may link to \fIObject Libraries\fP to get their objects and usage requirements. Continuing the above example, the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(B SHARED b.c) target_link_libraries(B PUBLIC obj) .ft P .fi .UNINDENT .UNINDENT .sp compiles \fBb.c\fP with \fB\-DA \-DOBJ\fP, creates shared library \fBB\fP with object files from \fBb.c\fP and \fBobj.c\fP, and links \fBB\fP to \fBA\fP\&. Furthermore, the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_executable(main main.c) target_link_libraries(main B) .ft P .fi .UNINDENT .UNINDENT .sp compiles \fBmain.c\fP with \fB\-DA \-DOBJ\fP and links executable \fBmain\fP to \fBB\fP and \fBA\fP\&. The object library\(aqs usage requirements are propagated transitively through \fBB\fP, but its object files are not. .sp \fIObject Libraries\fP may "link" to other object libraries to get usage requirements, but since they do not have a link step nothing is done with their object files. Continuing from the above example, the code: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(obj2 OBJECT obj2.c) target_link_libraries(obj2 PUBLIC obj) add_executable(main2 main2.c) target_link_libraries(main2 obj2) .ft P .fi .UNINDENT .UNINDENT .sp compiles \fBobj2.c\fP with \fB\-DA \-DOBJ\fP, creates executable \fBmain2\fP with object files from \fBmain2.c\fP and \fBobj2.c\fP, and links \fBmain2\fP to \fBA\fP\&. .sp In other words, when \fIObject Libraries\fP appear in a target\(aqs \fBINTERFACE_LINK_LIBRARIES\fP property they will be treated as \fIInterface Libraries\fP, but when they appear in a target\(aqs \fBLINK_LIBRARIES\fP property their object files will be included in the link too. .SS Cyclic Dependencies of Static Libraries .sp The library dependency graph is normally acyclic (a DAG), but in the case of mutually\-dependent \fBSTATIC\fP libraries CMake allows the graph to contain cycles (strongly connected components). When another target links to one of the libraries, CMake repeats the entire connected component. For example, the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_library(A STATIC a.c) add_library(B STATIC b.c) target_link_libraries(A B) target_link_libraries(B A) add_executable(main main.c) target_link_libraries(main A) .ft P .fi .UNINDENT .UNINDENT .sp links \fBmain\fP to \fBA B A B\fP\&. While one repetition is usually sufficient, pathological object file and symbol arrangements can require more. One may handle such cases by using the \fBLINK_INTERFACE_MULTIPLICITY\fP target property or by manually repeating the component in the last \fBtarget_link_libraries\fP call. However, if two archives are really so interdependent they should probably be combined into a single archive, perhaps by using \fIObject Libraries\fP\&. .SS Creating Relocatable Packages .sp Note that it is not advisable to populate the \fBINTERFACE_LINK_LIBRARIES\fP of a target with absolute paths to dependencies. That would hard\-code into installed packages the library file paths for dependencies \fBas found on the machine the package was made on\fP\&. .sp See the \fICreating Relocatable Packages\fP section of the \fBcmake\-packages(7)\fP manual for discussion of additional care that must be taken when specifying usage requirements while creating packages for redistribution. .SS target_link_options .sp Add options to the link step for an executable, shared library or module library target. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_options(<target> [BEFORE] <INTERFACE|PUBLIC|PRIVATE> [items1...] [<INTERFACE|PUBLIC|PRIVATE> [items2...] ...]) .ft P .fi .UNINDENT .UNINDENT .sp The named \fB<target>\fP must have been created by a command such as \fBadd_executable()\fP or \fBadd_library()\fP and must not be an \fIALIAS target\fP\&. .sp This command can be used to add any link options, but alternative commands exist to add libraries (\fBtarget_link_libraries()\fP or \fBlink_libraries()\fP). See documentation of the \fBdirectory\fP and \fBtarget\fP \fBLINK_OPTIONS\fP properties. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 This command cannot be used to add options for static library targets, since they do not use a linker. To add archiver or MSVC librarian flags, see the \fBSTATIC_LIBRARY_OPTIONS\fP target property. .UNINDENT .UNINDENT .sp If \fBBEFORE\fP is specified, the content will be prepended to the property instead of being appended. .sp The \fBINTERFACE\fP, \fBPUBLIC\fP and \fBPRIVATE\fP keywords are required to specify the scope of the following arguments. \fBPRIVATE\fP and \fBPUBLIC\fP items will populate the \fBLINK_OPTIONS\fP property of \fB<target>\fP\&. \fBPUBLIC\fP and \fBINTERFACE\fP items will populate the \fBINTERFACE_LINK_OPTIONS\fP property of \fB<target>\fP\&. (\fIIMPORTED targets\fP only support \fBINTERFACE\fP items.) The following arguments specify link options. Repeated calls for the same \fB<target>\fP append items in the order called. .sp Arguments to \fBtarget_link_options\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp The final set of compile or link options used for a target is constructed by accumulating options from the current target and the usage requirements of it dependencies. The set of options is de\-duplicated to avoid repetition. While beneficial for individual options, the de\-duplication step can break up option groups. For example, \fB\-D A \-D B\fP becomes \fB\-D A B\fP\&. One may specify a group of options using shell\-like quoting along with a \fBSHELL:\fP prefix. The \fBSHELL:\fP prefix is dropped and the rest of the option string is parsed using the \fBseparate_arguments()\fP \fBUNIX_COMMAND\fP mode. For example, \fB"SHELL:\-D A" "SHELL:\-D B"\fP becomes \fB\-D A \-D B\fP\&. .sp To pass options to the linker tool, each compiler driver has is own syntax. The \fBLINKER:\fP prefix can be used to specify, in a portable way, options to pass to the linker tool. The \fBLINKER:\fP prefix is replaced by the required driver option and the rest of the option string defines linker arguments using \fB,\fP as separator. These arguments will be formatted according to the \fBCMAKE_<LANG>_LINKER_WRAPPER_FLAG\fP and \fBCMAKE_<LANG>_LINKER_WRAPPER_FLAG_SEP\fP variables. .sp For example, \fB"LINKER:\-z,defs"\fP becomes \fB\-Xlinker \-z \-Xlinker defs\fP for \fBClang\fP and \fB\-Wl,\-z,defs\fP for \fBGNU GCC\fP\&. .sp The \fBLINKER:\fP prefix can be specified as part of a \fBSHELL:\fP prefix expression. .sp The \fBLINKER:\fP prefix supports, as alternate syntax, specification of arguments using \fBSHELL:\fP prefix and space as separator. Previous example becomes \fB"LINKER:SHELL:\-z defs"\fP\&. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 Specifying \fBSHELL:\fP prefix elsewhere than at the beginning of the \fBLINKER:\fP prefix is not supported. .UNINDENT .UNINDENT .SS target_sources .sp Add sources to a target. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_sources(<target> <INTERFACE|PUBLIC|PRIVATE> [items1...] [<INTERFACE|PUBLIC|PRIVATE> [items2...] ...]) .ft P .fi .UNINDENT .UNINDENT .sp Specifies sources to use when compiling a given target. Relative source file paths are interpreted as being relative to the current source directory (i.e. \fBCMAKE_CURRENT_SOURCE_DIR\fP). The named \fB<target>\fP must have been created by a command such as \fBadd_executable()\fP or \fBadd_library()\fP and must not be an \fIALIAS target\fP\&. .sp The \fBINTERFACE\fP, \fBPUBLIC\fP and \fBPRIVATE\fP keywords are required to specify the scope of the following arguments. \fBPRIVATE\fP and \fBPUBLIC\fP items will populate the \fBSOURCES\fP property of \fB<target>\fP\&. \fBPUBLIC\fP and \fBINTERFACE\fP items will populate the \fBINTERFACE_SOURCES\fP property of \fB<target>\fP\&. (\fIIMPORTED targets\fP only support \fBINTERFACE\fP items.) The following arguments specify sources. Repeated calls for the same \fB<target>\fP append items in the order called. .sp Arguments to \fBtarget_sources\fP may use "generator expressions" with the syntax \fB$<...>\fP\&. See the \fBcmake\-generator\-expressions(7)\fP manual for available expressions. See the \fBcmake\-buildsystem(7)\fP manual for more on defining buildsystem properties. .sp See also the \fBCMP0076\fP policy for older behavior related to the handling of relative source file paths. .SS try_compile .sp Try building some code. .SS Try Compiling Whole Projects .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C try_compile(<resultVar> <bindir> <srcdir> <projectName> [<targetName>] [CMAKE_FLAGS <flags>...] [OUTPUT_VARIABLE <var>]) .ft P .fi .UNINDENT .UNINDENT .sp Try building a project. The success or failure of the \fBtry_compile\fP, i.e. \fBTRUE\fP or \fBFALSE\fP respectively, is returned in \fB<resultVar>\fP\&. .sp In this form, \fB<srcdir>\fP should contain a complete CMake project with a \fBCMakeLists.txt\fP file and all sources. The \fB<bindir>\fP and \fB<srcdir>\fP will not be deleted after this command is run. Specify \fB<targetName>\fP to build a specific target instead of the \fBall\fP or \fBALL_BUILD\fP target. See below for the meaning of other options. .SS Try Compiling Source Files .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C try_compile(<resultVar> <bindir> <srcfile|SOURCES srcfile...> [CMAKE_FLAGS <flags>...] [COMPILE_DEFINITIONS <defs>...] [LINK_OPTIONS <options>...] [LINK_LIBRARIES <libs>...] [OUTPUT_VARIABLE <var>] [COPY_FILE <fileName> [COPY_FILE_ERROR <var>]] [<LANG>_STANDARD <std>] [<LANG>_STANDARD_REQUIRED <bool>] [<LANG>_EXTENSIONS <bool>] ) .ft P .fi .UNINDENT .UNINDENT .sp Try building an executable or static library from one or more source files (which one is determined by the \fBCMAKE_TRY_COMPILE_TARGET_TYPE\fP variable). The success or failure of the \fBtry_compile\fP, i.e. \fBTRUE\fP or \fBFALSE\fP respectively, is returned in \fB<resultVar>\fP\&. .sp In this form, one or more source files must be provided. If \fBCMAKE_TRY_COMPILE_TARGET_TYPE\fP is unset or is set to \fBEXECUTABLE\fP, the sources must include a definition for \fBmain\fP and CMake will create a \fBCMakeLists.txt\fP file to build the source(s) as an executable. If \fBCMAKE_TRY_COMPILE_TARGET_TYPE\fP is set to \fBSTATIC_LIBRARY\fP, a static library will be built instead and no definition for \fBmain\fP is required. For an executable, the generated \fBCMakeLists.txt\fP file would contain something like the following: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_definitions(<expanded COMPILE_DEFINITIONS from caller>) include_directories(${INCLUDE_DIRECTORIES}) link_directories(${LINK_DIRECTORIES}) add_executable(cmTryCompileExec <srcfile>...) target_link_options(cmTryCompileExec PRIVATE <LINK_OPTIONS from caller>) target_link_libraries(cmTryCompileExec ${LINK_LIBRARIES}) .ft P .fi .UNINDENT .UNINDENT .sp The options are: .INDENT 0.0 .TP .B \fBCMAKE_FLAGS <flags>...\fP Specify flags of the form \fB\-DVAR:TYPE=VALUE\fP to be passed to the \fBcmake\fP command\-line used to drive the test build. The above example shows how values for variables \fBINCLUDE_DIRECTORIES\fP, \fBLINK_DIRECTORIES\fP, and \fBLINK_LIBRARIES\fP are used. .TP .B \fBCOMPILE_DEFINITIONS <defs>...\fP Specify \fB\-Ddefinition\fP arguments to pass to \fBadd_definitions()\fP in the generated test project. .TP .B \fBCOPY_FILE <fileName>\fP Copy the built executable or static library to the given \fB<fileName>\fP\&. .TP .B \fBCOPY_FILE_ERROR <var>\fP Use after \fBCOPY_FILE\fP to capture into variable \fB<var>\fP any error message encountered while trying to copy the file. .TP .B \fBLINK_LIBRARIES <libs>...\fP Specify libraries to be linked in the generated project. The list of libraries may refer to system libraries and to \fIImported Targets\fP from the calling project. .sp If this option is specified, any \fB\-DLINK_LIBRARIES=...\fP value given to the \fBCMAKE_FLAGS\fP option will be ignored. .TP .B \fBLINK_OPTIONS <options>...\fP Specify link step options to pass to \fBtarget_link_options()\fP or to set the \fBSTATIC_LIBRARY_OPTIONS\fP target property in the generated project, depending on the \fBCMAKE_TRY_COMPILE_TARGET_TYPE\fP variable. .TP .B \fBOUTPUT_VARIABLE <var>\fP Store the output from the build process in the given variable. .TP .B \fB<LANG>_STANDARD <std>\fP Specify the \fBC_STANDARD\fP, \fBCXX_STANDARD\fP, or \fBCUDA_STANDARD\fP target property of the generated project. .TP .B \fB<LANG>_STANDARD_REQUIRED <bool>\fP Specify the \fBC_STANDARD_REQUIRED\fP, \fBCXX_STANDARD_REQUIRED\fP, or \fBCUDA_STANDARD_REQUIRED\fP target property of the generated project. .TP .B \fB<LANG>_EXTENSIONS <bool>\fP Specify the \fBC_EXTENSIONS\fP, \fBCXX_EXTENSIONS\fP, or \fBCUDA_EXTENSIONS\fP target property of the generated project. .UNINDENT .sp In this version all files in \fB<bindir>/CMakeFiles/CMakeTmp\fP will be cleaned automatically. For debugging, \fB\-\-debug\-trycompile\fP can be passed to \fBcmake\fP to avoid this clean. However, multiple sequential \fBtry_compile\fP operations reuse this single output directory. If you use \fB\-\-debug\-trycompile\fP, you can only debug one \fBtry_compile\fP call at a time. The recommended procedure is to protect all \fBtry_compile\fP calls in your project by \fBif(NOT DEFINED <resultVar>)\fP logic, configure with cmake all the way through once, then delete the cache entry associated with the try_compile call of interest, and then re\-run cmake again with \fB\-\-debug\-trycompile\fP\&. .SS Other Behavior Settings .sp If set, the following variables are passed in to the generated try_compile CMakeLists.txt to initialize compile target properties with default values: .INDENT 0.0 .IP \(bu 2 \fBCMAKE_ENABLE_EXPORTS\fP .IP \(bu 2 \fBCMAKE_LINK_SEARCH_START_STATIC\fP .IP \(bu 2 \fBCMAKE_LINK_SEARCH_END_STATIC\fP .IP \(bu 2 \fBCMAKE_MSVC_RUNTIME_LIBRARY\fP .IP \(bu 2 \fBCMAKE_POSITION_INDEPENDENT_CODE\fP .UNINDENT .sp If \fBCMP0056\fP is set to \fBNEW\fP, then \fBCMAKE_EXE_LINKER_FLAGS\fP is passed in as well. .sp If \fBCMP0083\fP is set to \fBNEW\fP, then in order to obtain correct behavior at link time, the \fBcheck_pie_supported()\fP command from the \fBCheckPIESupported\fP module must be called before using the \fBtry_compile()\fP command. .sp The current settings of \fBCMP0065\fP and \fBCMP0083\fP are propagated through to the generated test project. .sp Set the \fBCMAKE_TRY_COMPILE_CONFIGURATION\fP variable to choose a build configuration. .sp Set the \fBCMAKE_TRY_COMPILE_TARGET_TYPE\fP variable to specify the type of target used for the source file signature. .sp Set the \fBCMAKE_TRY_COMPILE_PLATFORM_VARIABLES\fP variable to specify variables that must be propagated into the test project. This variable is meant for use only in toolchain files and is only honored by the \fBtry_compile()\fP command for the source files form, not when given a whole project. .sp If \fBCMP0067\fP is set to \fBNEW\fP, or any of the \fB<LANG>_STANDARD\fP, \fB<LANG>_STANDARD_REQUIRED\fP, or \fB<LANG>_EXTENSIONS\fP options are used, then the language standard variables are honored: .INDENT 0.0 .IP \(bu 2 \fBCMAKE_C_STANDARD\fP .IP \(bu 2 \fBCMAKE_C_STANDARD_REQUIRED\fP .IP \(bu 2 \fBCMAKE_C_EXTENSIONS\fP .IP \(bu 2 \fBCMAKE_CXX_STANDARD\fP .IP \(bu 2 \fBCMAKE_CXX_STANDARD_REQUIRED\fP .IP \(bu 2 \fBCMAKE_CXX_EXTENSIONS\fP .IP \(bu 2 \fBCMAKE_CUDA_STANDARD\fP .IP \(bu 2 \fBCMAKE_CUDA_STANDARD_REQUIRED\fP .IP \(bu 2 \fBCMAKE_CUDA_EXTENSIONS\fP .UNINDENT .sp Their values are used to set the corresponding target properties in the generated project (unless overridden by an explicit option). .sp For the \fBGreen Hills MULTI\fP generator the GHS toolset and target system customization cache variables are also propagated into the test project. .SS try_run .sp Try compiling and then running some code. .SS Try Compiling and Running Source Files .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C try_run(<runResultVar> <compileResultVar> <bindir> <srcfile> [CMAKE_FLAGS <flags>...] [COMPILE_DEFINITIONS <defs>...] [LINK_OPTIONS <options>...] [LINK_LIBRARIES <libs>...] [COMPILE_OUTPUT_VARIABLE <var>] [RUN_OUTPUT_VARIABLE <var>] [OUTPUT_VARIABLE <var>] [ARGS <args>...]) .ft P .fi .UNINDENT .UNINDENT .sp Try compiling a \fB<srcfile>\fP\&. Returns \fBTRUE\fP or \fBFALSE\fP for success or failure in \fB<compileResultVar>\fP\&. If the compile succeeded, runs the executable and returns its exit code in \fB<runResultVar>\fP\&. If the executable was built, but failed to run, then \fB<runResultVar>\fP will be set to \fBFAILED_TO_RUN\fP\&. See the \fBtry_compile()\fP command for information on how the test project is constructed to build the source file. .sp The options are: .INDENT 0.0 .TP .B \fBCMAKE_FLAGS <flags>...\fP Specify flags of the form \fB\-DVAR:TYPE=VALUE\fP to be passed to the \fBcmake\fP command\-line used to drive the test build. The example in \fBtry_compile()\fP shows how values for variables \fBINCLUDE_DIRECTORIES\fP, \fBLINK_DIRECTORIES\fP, and \fBLINK_LIBRARIES\fP are used. .TP .B \fBCOMPILE_DEFINITIONS <defs>...\fP Specify \fB\-Ddefinition\fP arguments to pass to \fBadd_definitions()\fP in the generated test project. .TP .B \fBCOMPILE_OUTPUT_VARIABLE <var>\fP Report the compile step build output in a given variable. .TP .B \fBLINK_LIBRARIES <libs>...\fP Specify libraries to be linked in the generated project. The list of libraries may refer to system libraries and to \fIImported Targets\fP from the calling project. .sp If this option is specified, any \fB\-DLINK_LIBRARIES=...\fP value given to the \fBCMAKE_FLAGS\fP option will be ignored. .TP .B \fBLINK_OPTIONS <options>...\fP Specify link step options to pass to \fBtarget_link_options()\fP in the generated project. .TP .B \fBOUTPUT_VARIABLE <var>\fP Report the compile build output and the output from running the executable in the given variable. This option exists for legacy reasons. Prefer \fBCOMPILE_OUTPUT_VARIABLE\fP and \fBRUN_OUTPUT_VARIABLE\fP instead. .TP .B \fBRUN_OUTPUT_VARIABLE <var>\fP Report the output from running the executable in a given variable. .UNINDENT .SS Other Behavior Settings .sp Set the \fBCMAKE_TRY_COMPILE_CONFIGURATION\fP variable to choose a build configuration. .SS Behavior when Cross Compiling .sp When cross compiling, the executable compiled in the first step usually cannot be run on the build host. The \fBtry_run\fP command checks the \fBCMAKE_CROSSCOMPILING\fP variable to detect whether CMake is in cross\-compiling mode. If that is the case, it will still try to compile the executable, but it will not try to run the executable unless the \fBCMAKE_CROSSCOMPILING_EMULATOR\fP variable is set. Instead it will create cache variables which must be filled by the user or by presetting them in some CMake script file to the values the executable would have produced if it had been run on its actual target platform. These cache entries are: .INDENT 0.0 .TP .B \fB<runResultVar>\fP Exit code if the executable were to be run on the target platform. .TP .B \fB<runResultVar>__TRYRUN_OUTPUT\fP Output from stdout and stderr if the executable were to be run on the target platform. This is created only if the \fBRUN_OUTPUT_VARIABLE\fP or \fBOUTPUT_VARIABLE\fP option was used. .UNINDENT .sp In order to make cross compiling your project easier, use \fBtry_run\fP only if really required. If you use \fBtry_run\fP, use the \fBRUN_OUTPUT_VARIABLE\fP or \fBOUTPUT_VARIABLE\fP options only if really required. Using them will require that when cross\-compiling, the cache variables will have to be set manually to the output of the executable. You can also "guard" the calls to \fBtry_run\fP with an \fBif()\fP block checking the \fBCMAKE_CROSSCOMPILING\fP variable and provide an easy\-to\-preset alternative for this case. .SH CTEST COMMANDS .sp These commands are available only in CTest scripts. .SS ctest_build .sp Perform the \fICTest Build Step\fP as a \fIDashboard Client\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_build([BUILD <build\-dir>] [APPEND] [CONFIGURATION <config>] [FLAGS <flags>] [PROJECT_NAME <project\-name>] [TARGET <target\-name>] [NUMBER_ERRORS <num\-err\-var>] [NUMBER_WARNINGS <num\-warn\-var>] [RETURN_VALUE <result\-var>] [CAPTURE_CMAKE_ERROR <result\-var>] ) .ft P .fi .UNINDENT .UNINDENT .sp Build the project and store results in \fBBuild.xml\fP for submission with the \fBctest_submit()\fP command. .sp The \fBCTEST_BUILD_COMMAND\fP variable may be set to explicitly specify the build command line. Otherwise the build command line is computed automatically based on the options given. .sp The options are: .INDENT 0.0 .TP .B \fBBUILD <build\-dir>\fP Specify the top\-level build directory. If not given, the \fBCTEST_BINARY_DIRECTORY\fP variable is used. .TP .B \fBAPPEND\fP Mark \fBBuild.xml\fP for append to results previously submitted to a dashboard server since the last \fBctest_start()\fP call. Append semantics are defined by the dashboard server in use. This does \fInot\fP cause results to be appended to a \fB\&.xml\fP file produced by a previous call to this command. .TP .B \fBCONFIGURATION <config>\fP Specify the build configuration (e.g. \fBDebug\fP). If not specified the \fBCTEST_BUILD_CONFIGURATION\fP variable will be checked. Otherwise the \fB\-C <cfg>\fP option given to the \fBctest(1)\fP command will be used, if any. .TP .B \fBFLAGS <flags>\fP Pass additional arguments to the underlying build command. If not specified the \fBCTEST_BUILD_FLAGS\fP variable will be checked. This can, e.g., be used to trigger a parallel build using the \fB\-j\fP option of make. See the \fBProcessorCount\fP module for an example. .TP .B \fBPROJECT_NAME <project\-name>\fP Ignored. This was once used but is no longer needed. .TP .B \fBTARGET <target\-name>\fP Specify the name of a target to build. If not specified the \fBCTEST_BUILD_TARGET\fP variable will be checked. Otherwise the default target will be built. This is the "all" target (called \fBALL_BUILD\fP in \fIVisual Studio Generators\fP). .TP .B \fBNUMBER_ERRORS <num\-err\-var>\fP Store the number of build errors detected in the given variable. .TP .B \fBNUMBER_WARNINGS <num\-warn\-var>\fP Store the number of build warnings detected in the given variable. .TP .B \fBRETURN_VALUE <result\-var>\fP Store the return value of the native build tool in the given variable. .TP .B \fBCAPTURE_CMAKE_ERROR <result\-var>\fP Store in the \fB<result\-var>\fP variable \-1 if there are any errors running the command and prevent ctest from returning non\-zero if an error occurs. .TP .B \fBQUIET\fP Suppress any CTest\-specific non\-error output that would have been printed to the console otherwise. The summary of warnings / errors, as well as the output from the native build tool is unaffected by this option. .UNINDENT .SS ctest_configure .sp Perform the \fICTest Configure Step\fP as a \fIDashboard Client\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_configure([BUILD <build\-dir>] [SOURCE <source\-dir>] [APPEND] [OPTIONS <options>] [RETURN_VALUE <result\-var>] [QUIET] [CAPTURE_CMAKE_ERROR <result\-var>]) .ft P .fi .UNINDENT .UNINDENT .sp Configure the project build tree and record results in \fBConfigure.xml\fP for submission with the \fBctest_submit()\fP command. .sp The options are: .INDENT 0.0 .TP .B \fBBUILD <build\-dir>\fP Specify the top\-level build directory. If not given, the \fBCTEST_BINARY_DIRECTORY\fP variable is used. .TP .B \fBSOURCE <source\-dir>\fP Specify the source directory. If not given, the \fBCTEST_SOURCE_DIRECTORY\fP variable is used. .TP .B \fBAPPEND\fP Mark \fBConfigure.xml\fP for append to results previously submitted to a dashboard server since the last \fBctest_start()\fP call. Append semantics are defined by the dashboard server in use. This does \fInot\fP cause results to be appended to a \fB\&.xml\fP file produced by a previous call to this command. .TP .B \fBOPTIONS <options>\fP Specify command\-line arguments to pass to the configuration tool. .TP .B \fBRETURN_VALUE <result\-var>\fP Store in the \fB<result\-var>\fP variable the return value of the native configuration tool. .TP .B \fBCAPTURE_CMAKE_ERROR <result\-var>\fP Store in the \fB<result\-var>\fP variable \-1 if there are any errors running the command and prevent ctest from returning non\-zero if an error occurs. .TP .B \fBQUIET\fP Suppress any CTest\-specific non\-error messages that would have otherwise been printed to the console. Output from the underlying configure command is not affected. .UNINDENT .SS ctest_coverage .sp Perform the \fICTest Coverage Step\fP as a \fIDashboard Client\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_coverage([BUILD <build\-dir>] [APPEND] [LABELS <label>...] [RETURN_VALUE <result\-var>] [CAPTURE_CMAKE_ERROR <result\-var] [QUIET] ) .ft P .fi .UNINDENT .UNINDENT .sp Collect coverage tool results and stores them in \fBCoverage.xml\fP for submission with the \fBctest_submit()\fP command. .sp The options are: .INDENT 0.0 .TP .B \fBBUILD <build\-dir>\fP Specify the top\-level build directory. If not given, the \fBCTEST_BINARY_DIRECTORY\fP variable is used. .TP .B \fBAPPEND\fP Mark \fBCoverage.xml\fP for append to results previously submitted to a dashboard server since the last \fBctest_start()\fP call. Append semantics are defined by the dashboard server in use. This does \fInot\fP cause results to be appended to a \fB\&.xml\fP file produced by a previous call to this command. .TP .B \fBLABELS\fP Filter the coverage report to include only source files labeled with at least one of the labels specified. .TP .B \fBRETURN_VALUE <result\-var>\fP Store in the \fB<result\-var>\fP variable \fB0\fP if coverage tools ran without error and non\-zero otherwise. .TP .B \fBCAPTURE_CMAKE_ERROR <result\-var>\fP Store in the \fB<result\-var>\fP variable \-1 if there are any errors running the command and prevent ctest from returning non\-zero if an error occurs. .TP .B \fBQUIET\fP Suppress any CTest\-specific non\-error output that would have been printed to the console otherwise. The summary indicating how many lines of code were covered is unaffected by this option. .UNINDENT .SS ctest_empty_binary_directory .sp empties the binary directory .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_empty_binary_directory( directory ) .ft P .fi .UNINDENT .UNINDENT .sp Removes a binary directory. This command will perform some checks prior to deleting the directory in an attempt to avoid malicious or accidental directory deletion. .SS ctest_memcheck .sp Perform the \fICTest MemCheck Step\fP as a \fIDashboard Client\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_memcheck([BUILD <build\-dir>] [APPEND] [START <start\-number>] [END <end\-number>] [STRIDE <stride\-number>] [EXCLUDE <exclude\-regex>] [INCLUDE <include\-regex>] [EXCLUDE_LABEL <label\-exclude\-regex>] [INCLUDE_LABEL <label\-include\-regex>] [EXCLUDE_FIXTURE <regex>] [EXCLUDE_FIXTURE_SETUP <regex>] [EXCLUDE_FIXTURE_CLEANUP <regex>] [PARALLEL_LEVEL <level>] [TEST_LOAD <threshold>] [SCHEDULE_RANDOM <ON|OFF>] [STOP_TIME <time\-of\-day>] [RETURN_VALUE <result\-var>] [DEFECT_COUNT <defect\-count\-var>] [QUIET] ) .ft P .fi .UNINDENT .UNINDENT .sp Run tests with a dynamic analysis tool and store results in \fBMemCheck.xml\fP for submission with the \fBctest_submit()\fP command. .sp Most options are the same as those for the \fBctest_test()\fP command. .sp The options unique to this command are: .INDENT 0.0 .TP .B \fBDEFECT_COUNT <defect\-count\-var>\fP Store in the \fB<defect\-count\-var>\fP the number of defects found. .UNINDENT .SS ctest_read_custom_files .sp read CTestCustom files. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_read_custom_files( directory ... ) .ft P .fi .UNINDENT .UNINDENT .sp Read all the CTestCustom.ctest or CTestCustom.cmake files from the given directory. .sp By default, invoking \fBctest(1)\fP without a script will read custom files from the binary directory. .SS ctest_run_script .sp runs a ctest \-S script .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_run_script([NEW_PROCESS] script_file_name script_file_name1 script_file_name2 ... [RETURN_VALUE var]) .ft P .fi .UNINDENT .UNINDENT .sp Runs a script or scripts much like if it was run from ctest \-S. If no argument is provided then the current script is run using the current settings of the variables. If \fBNEW_PROCESS\fP is specified then each script will be run in a separate process.If \fBRETURN_VALUE\fP is specified the return value of the last script run will be put into \fBvar\fP\&. .SS ctest_sleep .sp sleeps for some amount of time .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_sleep(<seconds>) .ft P .fi .UNINDENT .UNINDENT .sp Sleep for given number of seconds. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_sleep(<time1> <duration> <time2>) .ft P .fi .UNINDENT .UNINDENT .sp Sleep for t=(time1 + duration \- time2) seconds if t > 0. .SS ctest_start .sp Starts the testing for a given model .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_start(<model> [<source> [<binary>]] [TRACK <track>] [QUIET]) ctest_start([<model> [<source> [<binary>]]] [TRACK <track>] APPEND [QUIET]) .ft P .fi .UNINDENT .UNINDENT .sp Starts the testing for a given model. The command should be called after the binary directory is initialized. .sp The parameters are as follows: .INDENT 0.0 .TP .B \fB<model>\fP Set the dashboard model. Must be one of \fBExperimental\fP, \fBContinuous\fP, or \fBNightly\fP\&. This parameter is required unless \fBAPPEND\fP is specified. .TP .B \fB<source>\fP Set the source directory. If not specified, the value of \fBCTEST_SOURCE_DIRECTORY\fP is used instead. .TP .B \fB<binary>\fP Set the binary directory. If not specified, the value of \fBCTEST_BINARY_DIRECTORY\fP is used instead. .TP .B \fBTRACK <track>\fP If \fBTRACK\fP is used, the submissions will go to the specified track on the CDash server. If no \fBTRACK\fP is specified, the name of the model is used by default. .TP .B \fBAPPEND\fP If \fBAPPEND\fP is used, the existing \fBTAG\fP is used rather than creating a new one based on the current time stamp. If you use \fBAPPEND\fP, you can omit the \fB<model>\fP and \fBTRACK <track>\fP parameters, because they will be read from the generated \fBTAG\fP file. For example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C ctest_start(Experimental TRACK TrackExperimental) .ft P .fi .UNINDENT .UNINDENT .sp Later, in another \fBctest \-S\fP script: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C ctest_start(APPEND) .ft P .fi .UNINDENT .UNINDENT .sp When the second script runs \fBctest_start(APPEND)\fP, it will read the \fBExperimental\fP model and \fBTrackExperimental\fP track from the \fBTAG\fP file generated by the first \fBctest_start()\fP command. Please note that if you call \fBctest_start(APPEND)\fP and specify a different model or track than in the first \fBctest_start()\fP command, a warning will be issued, and the new model and track will be used. .TP .B \fBQUIET\fP If \fBQUIET\fP is used, CTest will suppress any non\-error messages that it otherwise would have printed to the console. .UNINDENT .sp The parameters for \fBctest_start()\fP can be issued in any order, with the exception that \fB<model>\fP, \fB<source>\fP, and \fB<binary>\fP have to appear in that order with respect to each other. The following are all valid and equivalent: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_start(Experimental path/to/source path/to/binary TRACK SomeTrack QUIET APPEND) ctest_start(TRACK SomeTrack Experimental QUIET path/to/source APPEND path/to/binary) ctest_start(APPEND QUIET Experimental path/to/source TRACK SomeTrack path/to/binary) .ft P .fi .UNINDENT .UNINDENT .sp However, for the sake of readability, it is recommended that you order your parameters in the order listed at the top of this page. .sp If the \fBCTEST_CHECKOUT_COMMAND\fP variable (or the \fBCTEST_CVS_CHECKOUT\fP variable) is set, its content is treated as command\-line. The command is invoked with the current working directory set to the parent of the source directory, even if the source directory already exists. This can be used to create the source tree from a version control repository. .SS ctest_submit .sp Perform the \fICTest Submit Step\fP as a \fIDashboard Client\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_submit([PARTS <part>...] [FILES <file>...] [SUBMIT_URL <url>] [BUILD_ID <result\-var>] [HTTPHEADER <header>] [RETRY_COUNT <count>] [RETRY_DELAY <delay>] [RETURN_VALUE <result\-var>] [CAPTURE_CMAKE_ERROR <result\-var>] [QUIET] ) .ft P .fi .UNINDENT .UNINDENT .sp Submit results to a dashboard server. By default all available parts are submitted. .sp The options are: .INDENT 0.0 .TP .B \fBPARTS <part>...\fP Specify a subset of parts to submit. Valid part names are: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C Start = nothing Update = ctest_update results, in Update.xml Configure = ctest_configure results, in Configure.xml Build = ctest_build results, in Build.xml Test = ctest_test results, in Test.xml Coverage = ctest_coverage results, in Coverage.xml MemCheck = ctest_memcheck results, in DynamicAnalysis.xml Notes = Files listed by CTEST_NOTES_FILES, in Notes.xml ExtraFiles = Files listed by CTEST_EXTRA_SUBMIT_FILES Upload = Files prepared for upload by ctest_upload(), in Upload.xml Submit = nothing Done = Build is complete, in Done.xml .ft P .fi .UNINDENT .UNINDENT .TP .B \fBFILES <file>...\fP Specify an explicit list of specific files to be submitted. Each individual file must exist at the time of the call. .TP .B \fBSUBMIT_URL <url>\fP The \fBhttp\fP or \fBhttps\fP URL of the dashboard server to send the submission to. If not given, the \fBCTEST_SUBMIT_URL\fP variable is used. .TP .B \fBBUILD_ID <result\-var>\fP Store in the \fB<result\-var>\fP variable the ID assigned to this build by CDash. .TP .B \fBHTTPHEADER <HTTP\-header>\fP Specify HTTP header to be included in the request to CDash during submission. For example, CDash can be configured to only accept submissions from authenticated clients. In this case, you should provide a bearer token in your header: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C ctest_submit(HTTPHEADER "Authorization: Bearer <auth\-token>") .ft P .fi .UNINDENT .UNINDENT .sp This suboption can be repeated several times for multiple headers. .TP .B \fBRETRY_COUNT <count>\fP Specify how many times to retry a timed\-out submission. .TP .B \fBRETRY_DELAY <delay>\fP Specify how long (in seconds) to wait after a timed\-out submission before attempting to re\-submit. .TP .B \fBRETURN_VALUE <result\-var>\fP Store in the \fB<result\-var>\fP variable \fB0\fP for success and non\-zero on failure. .TP .B \fBCAPTURE_CMAKE_ERROR <result\-var>\fP Store in the \fB<result\-var>\fP variable \-1 if there are any errors running the command and prevent ctest from returning non\-zero if an error occurs. .TP .B \fBQUIET\fP Suppress all non\-error messages that would have otherwise been printed to the console. .UNINDENT .SS Submit to CDash Upload API .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_submit(CDASH_UPLOAD <file> [CDASH_UPLOAD_TYPE <type>] [SUBMIT_URL <url>] [HTTPHEADER <header>] [RETRY_COUNT <count>] [RETRY_DELAY <delay>] [RETURN_VALUE <result\-var>] [QUIET]) .ft P .fi .UNINDENT .UNINDENT .sp This second signature is used to upload files to CDash via the CDash file upload API. The API first sends a request to upload to CDash along with a content hash of the file. If CDash does not already have the file, then it is uploaded. Along with the file, a CDash type string is specified to tell CDash which handler to use to process the data. .sp This signature accepts the \fBSUBMIT_URL\fP, \fBBUILD_ID\fP, \fBHTTPHEADER\fP, \fBRETRY_COUNT\fP, \fBRETRY_DELAY\fP, \fBRETURN_VALUE\fP and \fBQUIET\fP options as described above. .SS ctest_test .sp Perform the \fICTest Test Step\fP as a \fIDashboard Client\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_test([BUILD <build\-dir>] [APPEND] [START <start\-number>] [END <end\-number>] [STRIDE <stride\-number>] [EXCLUDE <exclude\-regex>] [INCLUDE <include\-regex>] [EXCLUDE_LABEL <label\-exclude\-regex>] [INCLUDE_LABEL <label\-include\-regex>] [EXCLUDE_FIXTURE <regex>] [EXCLUDE_FIXTURE_SETUP <regex>] [EXCLUDE_FIXTURE_CLEANUP <regex>] [PARALLEL_LEVEL <level>] [TEST_LOAD <threshold>] [SCHEDULE_RANDOM <ON|OFF>] [STOP_TIME <time\-of\-day>] [RETURN_VALUE <result\-var>] [CAPTURE_CMAKE_ERROR <result\-var>] [QUIET] ) .ft P .fi .UNINDENT .UNINDENT .sp Run tests in the project build tree and store results in \fBTest.xml\fP for submission with the \fBctest_submit()\fP command. .sp The options are: .INDENT 0.0 .TP .B \fBBUILD <build\-dir>\fP Specify the top\-level build directory. If not given, the \fBCTEST_BINARY_DIRECTORY\fP variable is used. .TP .B \fBAPPEND\fP Mark \fBTest.xml\fP for append to results previously submitted to a dashboard server since the last \fBctest_start()\fP call. Append semantics are defined by the dashboard server in use. This does \fInot\fP cause results to be appended to a \fB\&.xml\fP file produced by a previous call to this command. .TP .B \fBSTART <start\-number>\fP Specify the beginning of a range of test numbers. .TP .B \fBEND <end\-number>\fP Specify the end of a range of test numbers. .TP .B \fBSTRIDE <stride\-number>\fP Specify the stride by which to step across a range of test numbers. .TP .B \fBEXCLUDE <exclude\-regex>\fP Specify a regular expression matching test names to exclude. .TP .B \fBINCLUDE <include\-regex>\fP Specify a regular expression matching test names to include. Tests not matching this expression are excluded. .TP .B \fBEXCLUDE_LABEL <label\-exclude\-regex>\fP Specify a regular expression matching test labels to exclude. .TP .B \fBINCLUDE_LABEL <label\-include\-regex>\fP Specify a regular expression matching test labels to include. Tests not matching this expression are excluded. .TP .B \fBEXCLUDE_FIXTURE <regex>\fP If a test in the set of tests to be executed requires a particular fixture, that fixture\(aqs setup and cleanup tests would normally be added to the test set automatically. This option prevents adding setup or cleanup tests for fixtures matching the \fB<regex>\fP\&. Note that all other fixture behavior is retained, including test dependencies and skipping tests that have fixture setup tests that fail. .TP .B \fBEXCLUDE_FIXTURE_SETUP <regex>\fP Same as \fBEXCLUDE_FIXTURE\fP except only matching setup tests are excluded. .TP .B \fBEXCLUDE_FIXTURE_CLEANUP <regex>\fP Same as \fBEXCLUDE_FIXTURE\fP except only matching cleanup tests are excluded. .TP .B \fBPARALLEL_LEVEL <level>\fP Specify a positive number representing the number of tests to be run in parallel. .TP .B \fBTEST_LOAD <threshold>\fP While running tests in parallel, try not to start tests when they may cause the CPU load to pass above a given threshold. If not specified the \fBCTEST_TEST_LOAD\fP variable will be checked, and then the \fB\-\-test\-load\fP command\-line argument to \fBctest(1)\fP\&. See also the \fBTestLoad\fP setting in the \fICTest Test Step\fP\&. .TP .B \fBSCHEDULE_RANDOM <ON|OFF>\fP Launch tests in a random order. This may be useful for detecting implicit test dependencies. .TP .B \fBSTOP_TIME <time\-of\-day>\fP Specify a time of day at which the tests should all stop running. .TP .B \fBRETURN_VALUE <result\-var>\fP Store in the \fB<result\-var>\fP variable \fB0\fP if all tests passed. Store non\-zero if anything went wrong. .TP .B \fBCAPTURE_CMAKE_ERROR <result\-var>\fP Store in the \fB<result\-var>\fP variable \-1 if there are any errors running the command and prevent ctest from returning non\-zero if an error occurs. .TP .B \fBQUIET\fP Suppress any CTest\-specific non\-error messages that would have otherwise been printed to the console. Output from the underlying test command is not affected. Summary info detailing the percentage of passing tests is also unaffected by the \fBQUIET\fP option. .UNINDENT .sp See also the \fBCTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE\fP and \fBCTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE\fP variables. .SS ctest_update .sp Perform the \fICTest Update Step\fP as a \fIDashboard Client\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_update([SOURCE <source\-dir>] [RETURN_VALUE <result\-var>] [CAPTURE_CMAKE_ERROR <result\-var>] [QUIET]) .ft P .fi .UNINDENT .UNINDENT .sp Update the source tree from version control and record results in \fBUpdate.xml\fP for submission with the \fBctest_submit()\fP command. .sp The options are: .INDENT 0.0 .TP .B \fBSOURCE <source\-dir>\fP Specify the source directory. If not given, the \fBCTEST_SOURCE_DIRECTORY\fP variable is used. .TP .B \fBRETURN_VALUE <result\-var>\fP Store in the \fB<result\-var>\fP variable the number of files updated or \fB\-1\fP on error. .TP .B \fBCAPTURE_CMAKE_ERROR <result\-var>\fP Store in the \fB<result\-var>\fP variable \-1 if there are any errors running the command and prevent ctest from returning non\-zero if an error occurs. .TP .B \fBQUIET\fP Tell CTest to suppress most non\-error messages that it would have otherwise printed to the console. CTest will still report the new revision of the repository and any conflicting files that were found. .UNINDENT .sp The update always follows the version control branch currently checked out in the source directory. See the \fICTest Update Step\fP documentation for information about variables that change the behavior of \fBctest_update()\fP\&. .SS ctest_upload .sp Upload files to a dashboard server as a \fIDashboard Client\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C ctest_upload(FILES <file>... [QUIET] [CAPTURE_CMAKE_ERROR <result\-var>]) .ft P .fi .UNINDENT .UNINDENT .sp The options are: .INDENT 0.0 .TP .B \fBFILES <file>...\fP Specify a list of files to be sent along with the build results to the dashboard server. .TP .B \fBQUIET\fP Suppress any CTest\-specific non\-error output that would have been printed to the console otherwise. .TP .B \fBCAPTURE_CMAKE_ERROR <result\-var>\fP Store in the \fB<result\-var>\fP variable \-1 if there are any errors running the command and prevent ctest from returning non\-zero if an error occurs. .UNINDENT .SH DEPRECATED COMMANDS .sp These commands are deprecated and are only made available to maintain backward compatibility. The documentation of each command states the CMake version in which it was deprecated. Do not use these commands in new code. .SS build_name .sp Disallowed since version 3.0. See CMake Policy \fBCMP0036\fP\&. .sp Use \fB${CMAKE_SYSTEM}\fP and \fB${CMAKE_CXX_COMPILER}\fP instead. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C build_name(variable) .ft P .fi .UNINDENT .UNINDENT .sp Sets the specified variable to a string representing the platform and compiler settings. These values are now available through the \fBCMAKE_SYSTEM\fP and \fBCMAKE_CXX_COMPILER\fP variables. .SS exec_program .sp Deprecated since version 3.0. .sp Run an executable program during the processing of the CMakeList.txt file. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C exec_program(Executable [directory in which to run] [ARGS <arguments to executable>] [OUTPUT_VARIABLE <var>] [RETURN_VALUE <var>]) .ft P .fi .UNINDENT .UNINDENT .sp The executable is run in the optionally specified directory. The executable can include arguments if it is double quoted, but it is better to use the optional \fBARGS\fP argument to specify arguments to the program. This is because cmake will then be able to escape spaces in the executable path. An optional argument \fBOUTPUT_VARIABLE\fP specifies a variable in which to store the output. To capture the return value of the execution, provide a \fBRETURN_VALUE\fP\&. If \fBOUTPUT_VARIABLE\fP is specified, then no output will go to the stdout/stderr of the console running cmake. .SS export_library_dependencies .sp Disallowed since version 3.0. See CMake Policy \fBCMP0033\fP\&. .sp Use \fBinstall(EXPORT)\fP or \fBexport()\fP command. .sp This command generates an old\-style library dependencies file. Projects requiring CMake 2.6 or later should not use the command. Use instead the \fBinstall(EXPORT)\fP command to help export targets from an installation tree and the \fBexport()\fP command to export targets from a build tree. .sp The old\-style library dependencies file does not take into account per\-configuration names of libraries or the \fBLINK_INTERFACE_LIBRARIES\fP target property. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C export_library_dependencies(<file> [APPEND]) .ft P .fi .UNINDENT .UNINDENT .sp Create a file named \fB<file>\fP that can be included into a CMake listfile with the INCLUDE command. The file will contain a number of SET commands that will set all the variables needed for library dependency information. This should be the last command in the top level CMakeLists.txt file of the project. If the \fBAPPEND\fP option is specified, the SET commands will be appended to the given file instead of replacing it. .SS install_files .sp Deprecated since version 3.0. .sp This command has been superceded by the \fBinstall()\fP command. It is provided for compatibility with older CMake code. The \fBFILES\fP form is directly replaced by the \fBFILES\fP form of the \fBinstall()\fP command. The regexp form can be expressed more clearly using the \fBGLOB\fP form of the \fBfile()\fP command. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install_files(<dir> extension file file ...) .ft P .fi .UNINDENT .UNINDENT .sp Create rules to install the listed files with the given extension into the given directory. Only files existing in the current source tree or its corresponding location in the binary tree may be listed. If a file specified already has an extension, that extension will be removed first. This is useful for providing lists of source files such as foo.cxx when you want the corresponding foo.h to be installed. A typical extension is \fB\&.h\fP\&. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install_files(<dir> regexp) .ft P .fi .UNINDENT .UNINDENT .sp Any files in the current source directory that match the regular expression will be installed. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install_files(<dir> FILES file file ...) .ft P .fi .UNINDENT .UNINDENT .sp Any files listed after the \fBFILES\fP keyword will be installed explicitly from the names given. Full paths are allowed in this form. .sp The directory \fB<dir>\fP is relative to the installation prefix, which is stored in the variable \fBCMAKE_INSTALL_PREFIX\fP\&. .SS install_programs .sp Deprecated since version 3.0. .sp This command has been superceded by the \fBinstall()\fP command. It is provided for compatibility with older CMake code. The \fBFILES\fP form is directly replaced by the \fBPROGRAMS\fP form of the \fBinstall()\fP command. The regexp form can be expressed more clearly using the \fBGLOB\fP form of the \fBfile()\fP command. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install_programs(<dir> file1 file2 [file3 ...]) install_programs(<dir> FILES file1 [file2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp Create rules to install the listed programs into the given directory. Use the \fBFILES\fP argument to guarantee that the file list version of the command will be used even when there is only one argument. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install_programs(<dir> regexp) .ft P .fi .UNINDENT .UNINDENT .sp In the second form any program in the current source directory that matches the regular expression will be installed. .sp This command is intended to install programs that are not built by cmake, such as shell scripts. See the \fBTARGETS\fP form of the \fBinstall()\fP command to create installation rules for targets built by cmake. .sp The directory \fB<dir>\fP is relative to the installation prefix, which is stored in the variable \fBCMAKE_INSTALL_PREFIX\fP\&. .SS install_targets .sp Deprecated since version 3.0. .sp This command has been superceded by the \fBinstall()\fP command. It is provided for compatibility with older CMake code. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C install_targets(<dir> [RUNTIME_DIRECTORY dir] target target) .ft P .fi .UNINDENT .UNINDENT .sp Create rules to install the listed targets into the given directory. The directory \fB<dir>\fP is relative to the installation prefix, which is stored in the variable \fBCMAKE_INSTALL_PREFIX\fP\&. If \fBRUNTIME_DIRECTORY\fP is specified, then on systems with special runtime files (Windows DLL), the files will be copied to that directory. .SS load_command .sp Disallowed since version 3.0. See CMake Policy \fBCMP0031\fP\&. .sp Load a command into a running CMake. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C load_command(COMMAND_NAME <loc1> [loc2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp The given locations are searched for a library whose name is cmCOMMAND_NAME. If found, it is loaded as a module and the command is added to the set of available CMake commands. Usually, \fBtry_compile()\fP is used before this command to compile the module. If the command is successfully loaded a variable named .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C CMAKE_LOADED_COMMAND_<COMMAND_NAME> .ft P .fi .UNINDENT .UNINDENT .sp will be set to the full path of the module that was loaded. Otherwise the variable will not be set. .SS make_directory .sp Deprecated since version 3.0. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C make_directory(directory) .ft P .fi .UNINDENT .UNINDENT .sp Creates the specified directory. Full paths should be given. Any parent directories that do not exist will also be created. Use with care. .SS output_required_files .sp Disallowed since version 3.0. See CMake Policy \fBCMP0032\fP\&. .sp Approximate C preprocessor dependency scanning. .sp This command exists only because ancient CMake versions provided it. CMake handles preprocessor dependency scanning automatically using a more advanced scanner. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C output_required_files(srcfile outputfile) .ft P .fi .UNINDENT .UNINDENT .sp Outputs a list of all the source files that are required by the specified \fBsrcfile\fP\&. This list is written into \fBoutputfile\fP\&. This is similar to writing out the dependencies for \fBsrcfile\fP except that it jumps from \fB\&.h\fP files into \fB\&.cxx\fP, \fB\&.c\fP and \fB\&.cpp\fP files if possible. .SS qt_wrap_cpp .sp Deprecated since version 3.14. .sp Manually create Qt Wrappers. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C qt_wrap_cpp(resultingLibraryName DestName SourceLists ...) .ft P .fi .UNINDENT .UNINDENT .sp Produces moc files for all the .h files listed in the SourceLists. The moc files will be added to the library using the \fBDestName\fP source list. .sp Consider updating the project to use the \fBAUTOMOC\fP target property instead for a more automated way of invoking the \fBmoc\fP tool. .SS qt_wrap_ui .sp Deprecated since version 3.14. .sp Manually create Qt user interfaces Wrappers. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C qt_wrap_ui(resultingLibraryName HeadersDestName SourcesDestName SourceLists ...) .ft P .fi .UNINDENT .UNINDENT .sp Produces .h and .cxx files for all the .ui files listed in the \fBSourceLists\fP\&. The .h files will be added to the library using the \fBHeadersDestNamesource\fP list. The .cxx files will be added to the library using the \fBSourcesDestNamesource\fP list. .sp Consider updating the project to use the \fBAUTOUIC\fP target property instead for a more automated way of invoking the \fBuic\fP tool. .SS remove .sp Deprecated since version 3.0. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C remove(VAR VALUE VALUE ...) .ft P .fi .UNINDENT .UNINDENT .sp Removes \fBVALUE\fP from the variable \fBVAR\fP\&. This is typically used to remove entries from a vector (e.g. semicolon separated list). \fBVALUE\fP is expanded. .SS subdir_depends .sp Disallowed since version 3.0. See CMake Policy \fBCMP0029\fP\&. .sp Does nothing. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C subdir_depends(subdir dep1 dep2 ...) .ft P .fi .UNINDENT .UNINDENT .sp Does not do anything. This command used to help projects order parallel builds correctly. This functionality is now automatic. .SS subdirs .sp Deprecated since version 3.0. .sp Add a list of subdirectories to the build. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C subdirs(dir1 dir2 ...[EXCLUDE_FROM_ALL exclude_dir1 exclude_dir2 ...] [PREORDER] ) .ft P .fi .UNINDENT .UNINDENT .sp Add a list of subdirectories to the build. The \fBadd_subdirectory()\fP command should be used instead of \fBsubdirs\fP although \fBsubdirs\fP will still work. This will cause any CMakeLists.txt files in the sub directories to be processed by CMake. Any directories after the \fBPREORDER\fP flag are traversed first by makefile builds, the \fBPREORDER\fP flag has no effect on IDE projects. Any directories after the \fBEXCLUDE_FROM_ALL\fP marker will not be included in the top level makefile or project file. This is useful for having CMake create makefiles or projects for a set of examples in a project. You would want CMake to generate makefiles or project files for all the examples at the same time, but you would not want them to show up in the top level project or be built each time make is run from the top. .SS use_mangled_mesa .sp Disallowed since version 3.0. See CMake Policy \fBCMP0030\fP\&. .sp Copy mesa headers for use in combination with system GL. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C use_mangled_mesa(PATH_TO_MESA OUTPUT_DIRECTORY) .ft P .fi .UNINDENT .UNINDENT .sp The path to mesa includes, should contain \fBgl_mangle.h\fP\&. The mesa headers are copied to the specified output directory. This allows mangled mesa headers to override other GL headers by being added to the include directory path earlier. .SS utility_source .sp Disallowed since version 3.0. See CMake Policy \fBCMP0034\fP\&. .sp Specify the source tree of a third\-party utility. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C utility_source(cache_entry executable_name path_to_source [file1 file2 ...]) .ft P .fi .UNINDENT .UNINDENT .sp When a third\-party utility\(aqs source is included in the distribution, this command specifies its location and name. The cache entry will not be set unless the \fBpath_to_source\fP and all listed files exist. It is assumed that the source tree of the utility will have been built before it is needed. .sp When cross compiling CMake will print a warning if a \fButility_source()\fP command is executed, because in many cases it is used to build an executable which is executed later on. This doesn\(aqt work when cross compiling, since the executable can run only on their target platform. So in this case the cache entry has to be adjusted manually so it points to an executable which is runnable on the build host. .SS variable_requires .sp Disallowed since version 3.0. See CMake Policy \fBCMP0035\fP\&. .sp Use the \fBif()\fP command instead. .sp Assert satisfaction of an option\(aqs required variables. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C variable_requires(TEST_VARIABLE RESULT_VARIABLE REQUIRED_VARIABLE1 REQUIRED_VARIABLE2 ...) .ft P .fi .UNINDENT .UNINDENT .sp The first argument (\fBTEST_VARIABLE\fP) is the name of the variable to be tested, if that variable is false nothing else is done. If \fBTEST_VARIABLE\fP is true, then the next argument (\fBRESULT_VARIABLE\fP) is a variable that is set to true if all the required variables are set. The rest of the arguments are variables that must be true or not set to \fBNOTFOUND\fP to avoid an error. If any are not true, an error is reported. .SS write_file .sp Deprecated since version 3.0. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C write_file(filename "message to write"... [APPEND]) .ft P .fi .UNINDENT .UNINDENT .sp The first argument is the file name, the rest of the arguments are messages to write. If the argument \fBAPPEND\fP is specified, then the message will be appended. .sp NOTE 1: \fBfile(WRITE)\fP and \fBfile(APPEND)\fP do exactly the same as this one but add some more functionality. .sp NOTE 2: When using \fBwrite_file\fP the produced file cannot be used as an input to CMake (CONFIGURE_FILE, source file ...) because it will lead to an infinite loop. Use \fBconfigure_file()\fP if you want to generate input files to CMake. .SH COPYRIGHT 2000-2019 Kitware, Inc. and Contributors .\" Generated by docutils manpage writer. .