.\" Man page generated from reStructuredText. . .TH "CMAKE-POLICIES" "7" "January 04, 2019" "3.13.2" "CMake" .SH NAME cmake-policies \- CMake Policies 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 .. .SH INTRODUCTION .sp Policies in CMake are used to preserve backward compatible behavior across multiple releases. When a new policy is introduced, newer CMake versions will begin to warn about the backward compatible behavior. It is possible to disable the warning by explicitly requesting the OLD, or backward compatible behavior using the \fBcmake_policy()\fP command. It is also possible to request \fBNEW\fP, or non\-backward compatible behavior for a policy, also avoiding the warning. Each policy can also be set to either \fBNEW\fP or \fBOLD\fP behavior explicitly on the command line with the \fBCMAKE_POLICY_DEFAULT_CMP\fP variable. .sp A policy is a deprecation mechanism and not a reliable feature toggle. A policy should almost never be set to \fBOLD\fP, except to silence warnings in an otherwise frozen or stable codebase, or temporarily as part of a larger migration path. The \fBOLD\fP behavior of each policy is undesirable and will be replaced with an error condition in a future release. .sp The \fBcmake_minimum_required()\fP command does more than report an error if a too\-old version of CMake is used to build a project. It also sets all policies introduced in that CMake version or earlier to \fBNEW\fP behavior. To manage policies without increasing the minimum required CMake version, the \fBif(POLICY)\fP command may be used: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if(POLICY CMP0990) cmake_policy(SET CMP0990 NEW) endif() .ft P .fi .UNINDENT .UNINDENT .sp This has the effect of using the \fBNEW\fP behavior with newer CMake releases which users may be using and not issuing a compatibility warning. .sp The setting of a policy is confined in some cases to not propagate to the parent scope. For example, if the files read by the \fBinclude()\fP command or the \fBfind_package()\fP command contain a use of \fBcmake_policy()\fP, that policy setting will not affect the caller by default. Both commands accept an optional \fBNO_POLICY_SCOPE\fP keyword to control this behavior. .sp The \fBCMAKE_MINIMUM_REQUIRED_VERSION\fP variable may also be used to determine whether to report an error on use of deprecated macros or functions. .SH POLICIES INTRODUCED BY CMAKE 3.13 .SS CMP0081 .sp Relative paths not allowed in \fBLINK_DIRECTORIES\fP target property. .sp CMake 3.12 and lower allowed the \fBLINK_DIRECTORIES\fP directory property to contain relative paths. The base path for such relative entries is not well defined. CMake 3.13 and later will issue a \fBFATAL_ERROR\fP if the \fBLINK_DIRECTORIES\fP target property (which is initialized by the \fBLINK_DIRECTORIES\fP directory property) contains a relative path. .sp The \fBOLD\fP behavior for this policy is not to warn about relative paths in the \fBLINK_DIRECTORIES\fP target property. The \fBNEW\fP behavior for this policy is to issue a \fBFATAL_ERROR\fP if \fBLINK_DIRECTORIES\fP contains a relative path. .sp This policy was introduced in CMake version 3.13. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0080 .sp \fBBundleUtilities\fP cannot be included at configure time. .sp The macros provided by \fBBundleUtilities\fP are intended to be invoked at install time rather than at configure time, because they depend on the listed targets already existing at the time they are invoked. If they are invoked at configure time, the targets haven\(aqt been built yet, and the commands will fail. .sp This policy restricts the inclusion of \fBBundleUtilities\fP to \fBcmake \-P\fP style scripts and install rules. Specifically, it looks for the presence of \fBCMAKE_GENERATOR\fP and throws a fatal error if it exists. .sp The \fBOLD\fP behavior of this policy is to allow \fBBundleUtilities\fP to be included at configure time. The \fBNEW\fP behavior of this policy is to disallow such inclusion. .sp This policy was introduced in CMake version 3.13. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0079 .sp \fBtarget_link_libraries()\fP allows use with targets in other directories. .sp Prior to CMake 3.13 the \fBtarget_link_libraries()\fP command did not accept targets not created in the calling directory as its first argument for calls that update the \fBLINK_LIBRARIES\fP of the target itself. It did accidentally accept targets from other directories on calls that only update the \fBINTERFACE_LINK_LIBRARIES\fP, but would simply add entries to the property as if the call were made in the original directory. Thus link interface libraries specified this way were always looked up by generators in the scope of the original target rather than in the scope that called \fBtarget_link_libraries()\fP\&. .sp CMake 3.13 now allows the \fBtarget_link_libraries()\fP command to be called from any directory to add link dependencies and link interface libraries to targets created in other directories. The entries are added to \fBLINK_LIBRARIES\fP and \fBINTERFACE_LINK_LIBRARIES\fP using a special (internal) suffix to tell the generators to look up the names in the calling scope rather than the scope that created the target. .sp This policy provides compatibility with projects that already use \fBtarget_link_libraries()\fP with the \fBINTERFACE\fP keyword on a target in another directory to add \fBINTERFACE_LINK_LIBRARIES\fP entries to be looked up in the target\(aqs directory. Such projects should be updated to be aware of the new scoping rules in that case. .sp The \fBOLD\fP behavior of this policy is to disallow \fBtarget_link_libraries()\fP calls naming targets from another directory except in the previously accidentally allowed case of using the \fBINTERFACE\fP keyword only. The \fBNEW\fP behavior of this policy is to allow all such calls but use the new scoping rules. .sp This policy was introduced in CMake version 3.13. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0078 .sp Starting with CMake 3.13, \fBUseSWIG\fP generates now standard target names. This policy provides compatibility with projects that expect the legacy behavior. .sp The \fBOLD\fP behavior for this policy relies on \fBUseSWIG_TARGET_NAME_PREFERENCE\fP variable that can be used to specify an explicit preference. The value may be one of: .INDENT 0.0 .IP \(bu 2 \fBLEGACY\fP: legacy strategy is applied. Variable \fBSWIG_MODULE__REAL_NAME\fP must be used to get real target name. This is the default if not specified. .IP \(bu 2 \fBSTANDARD\fP: target name matches specified name. .UNINDENT .sp This policy was introduced in CMake version 3.13. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0077 .sp \fBoption()\fP honors normal variables. .sp The \fBoption()\fP command is typically used to create a cache entry to allow users to set the option. However, there are cases in which a normal (non\-cached) variable of the same name as the option may be defined by the project prior to calling the \fBoption()\fP command. For example, a project that embeds another project as a subdirectory may want to hard\-code options of the subproject to build the way it needs. .sp For historical reasons in CMake 3.12 and below the \fBoption()\fP command \fIremoves\fP a normal (non\-cached) variable of the same name when: .INDENT 0.0 .IP \(bu 2 a cache entry of the specified name does not exist at all, or .IP \(bu 2 a cache entry of the specified name exists but has not been given a type (e.g. via \fB\-D=ON\fP on the command line). .UNINDENT .sp In both of these cases (typically on the first run in a new build tree), the \fBoption()\fP command gives the cache entry type \fBBOOL\fP and removes any normal (non\-cached) variable of the same name. In the remaining case that the cache entry of the specified name already exists and has a type (typically on later runs in a build tree), the \fBoption()\fP command changes nothing and any normal variable of the same name remains set. .sp In CMake 3.13 and above the \fBoption()\fP command prefers to do nothing when a normal variable of the given name already exists. It does not create or update a cache entry or remove the normal variable. The new behavior is consistent between the first and later runs in a build tree. This policy provides compatibility with projects that have not been updated to expect the new behavior. .sp When the \fBoption()\fP command sees a normal variable of the given name: .INDENT 0.0 .IP \(bu 2 The \fBOLD\fP behavior for this policy is to proceed even when a normal variable of the same name exists. If the cache entry does not already exist and have a type then it is created and/or given a type and the normal variable is removed. .IP \(bu 2 The \fBNEW\fP behavior for this policy is to do nothing when a normal variable of the same name exists. The normal variable is not removed. The cache entry is not created or updated and is ignored if it exists. .UNINDENT .sp This policy was introduced in CMake version 3.13. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0076 .sp The \fBtarget_sources()\fP command converts relative paths to absolute. .sp In CMake 3.13 and above, the \fBtarget_sources()\fP command now converts relative source file paths to absolute paths in the following cases: .INDENT 0.0 .IP \(bu 2 Source files are added to the target\(aqs \fBINTERFACE_SOURCES\fP property. .IP \(bu 2 The target\(aqs \fBSOURCE_DIR\fP property differs from \fBCMAKE_CURRENT_SOURCE_DIR\fP\&. .UNINDENT .sp A path that begins with a generator expression is always left unmodified. .sp This policy provides compatibility with projects that have not been updated to expect this behavior. The \fBOLD\fP behavior for this policy is to leave all relative source file paths unmodified. The \fBNEW\fP behavior of this policy is to convert relative paths to absolute according to above rules. .sp This policy was introduced in CMake version 3.13. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 .SH POLICIES INTRODUCED BY CMAKE 3.12 .SS CMP0075 .sp Include file check macros honor \fBCMAKE_REQUIRED_LIBRARIES\fP\&. .sp In CMake 3.12 and above, the .INDENT 0.0 .IP \(bu 2 \fBcheck_include_file\fP macro in the \fBCheckIncludeFile\fP module, the .IP \(bu 2 \fBcheck_include_file_cxx\fP macro in the \fBCheckIncludeFileCXX\fP module, and the .IP \(bu 2 \fBcheck_include_files\fP macro in the \fBCheckIncludeFiles\fP module .UNINDENT .sp now prefer to link the check executable to the libraries listed in the \fBCMAKE_REQUIRED_LIBRARIES\fP variable. This policy provides compatibility with projects that have not been updated to expect this behavior. .sp The \fBOLD\fP behavior for this policy is to ignore \fBCMAKE_REQUIRED_LIBRARIES\fP in the include file check macros. The \fBNEW\fP behavior of this policy is to honor \fBCMAKE_REQUIRED_LIBRARIES\fP in the include file check macros. .sp This policy was introduced in CMake version 3.12. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0074 .sp \fBfind_package()\fP uses \fB_ROOT\fP variables. .sp In CMake 3.12 and above the \fBfind_package()\fP command now searches prefixes specified by the \fB_ROOT\fP CMake variable and the \fB_ROOT\fP environment variable. Package roots are maintained as a stack so nested calls to all \fBfind_*\fP commands inside find modules also search the roots as prefixes. This policy provides compatibility with projects that have not been updated to avoid using \fB_ROOT\fP variables for other purposes. .sp The \fBOLD\fP behavior for this policy is to ignore \fB_ROOT\fP variables. The \fBNEW\fP behavior for this policy is to use \fB_ROOT\fP variables. .sp This policy was introduced in CMake version 3.12. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0073 .sp Do not produce legacy \fB_LIB_DEPENDS\fP cache entries. .sp Ancient CMake versions once used \fB_LIB_DEPENDS\fP cache entries to propagate library link dependencies. This has long been done by other means, leaving the \fBexport_library_dependencies()\fP command as the only user of these values. That command has long been disallowed by policy \fBCMP0033\fP, but the \fB_LIB_DEPENDS\fP cache entries were left for compatibility with possible non\-standard uses by projects. .sp CMake 3.12 and above now prefer to not produce these cache entries at all. This policy provides compatibility with projects that have not been updated to avoid using them. .sp The \fBOLD\fP behavior for this policy is to set \fB_LIB_DEPENDS\fP cache entries. The \fBNEW\fP behavior for this policy is to not set them. .sp This policy was introduced in CMake version 3.12. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. Unlike most policies, CMake version 3.13.2 does \fInot\fP warn when this policy is not set and simply uses \fBOLD\fP behavior. .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 .SH POLICIES INTRODUCED BY CMAKE 3.11 .SS CMP0072 .sp \fBFindOpenGL\fP prefers GLVND by default when available. .sp The \fBFindOpenGL\fP module provides an \fBOpenGL::GL\fP target and an \fBOPENGL_LIBRARIES\fP variable for projects to use for legacy GL interfaces. When both a legacy GL library (e.g. \fBlibGL.so\fP) and GLVND libraries for OpenGL and GLX (e.g. \fBlibOpenGL.so\fP and \fBlibGLX.so\fP) are available, the module must choose between them. It documents an \fBOpenGL_GL_PREFERENCE\fP variable that can be used to specify an explicit preference. When no such preference is set, the module must choose a default preference. .sp CMake 3.11 and above prefer to choose GLVND libraries. This policy provides compatibility with projects that expect the legacy GL library to be used. .sp The \fBOLD\fP behavior for this policy is to set \fBOpenGL_GL_PREFERENCE\fP to \fBLEGACY\fP\&. The \fBNEW\fP behavior for this policy is to set \fBOpenGL_GL_PREFERENCE\fP to \fBGLVND\fP\&. .sp This policy was introduced in CMake version 3.11. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 .SH POLICIES INTRODUCED BY CMAKE 3.10 .SS CMP0071 .sp Let \fBAUTOMOC\fP and \fBAUTOUIC\fP process \fBGENERATED\fP files. .sp Since version 3.10, CMake processes \fBregular\fP and \fBGENERATED\fP source files in \fBAUTOMOC\fP and \fBAUTOUIC\fP\&. In earlier CMake versions, only \fBregular\fP source files were processed. \fBGENERATED\fP source files were ignored silently. .sp This policy affects how source files that are \fBGENERATED\fP get treated in \fBAUTOMOC\fP and \fBAUTOUIC\fP\&. .sp The \fBOLD\fP behavior for this policy is to ignore \fBGENERATED\fP source files in \fBAUTOMOC\fP and \fBAUTOUIC\fP\&. .sp The \fBNEW\fP behavior for this policy is to process \fBGENERATED\fP source files in \fBAUTOMOC\fP and \fBAUTOUIC\fP just like regular source files. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 To silence the CMP0071 warning source files can be excluded from \fBAUTOMOC\fP and \fBAUTOUIC\fP processing by setting the source file properties \fBSKIP_AUTOMOC\fP, \fBSKIP_AUTOUIC\fP or \fBSKIP_AUTOGEN\fP\&. .UNINDENT .UNINDENT .sp Source skip example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # ... set_property(SOURCE /path/to/file1.h PROPERTY SKIP_AUTOMOC ON) set_property(SOURCE /path/to/file2.h PROPERTY SKIP_AUTOUIC ON) set_property(SOURCE /path/to/file3.h PROPERTY SKIP_AUTOGEN ON) # ... .ft P .fi .UNINDENT .UNINDENT .sp This policy was introduced in CMake version 3.10. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0070 .sp Define \fBfile(GENERATE)\fP behavior for relative paths. .sp CMake 3.10 and newer define that relative paths given to \fBINPUT\fP and \fBOUTPUT\fP arguments of \fBfile(GENERATE)\fP are interpreted relative to the current source and binary directories, respectively. CMake 3.9 and lower did not define any behavior for relative paths but did not diagnose them either and accidentally treated them relative to the process working directory. Policy \fBCMP0070\fP provides compatibility with projects that used the old undefined behavior. .sp This policy affects behavior of relative paths given to \fBfile(GENERATE)\fP\&. The \fBOLD\fP behavior for this policy is to treat the paths relative to the working directory of CMake. The \fBNEW\fP behavior for this policy is to interpret relative paths with respect to the current source or binary directory of the caller. .sp This policy was introduced in CMake version 3.10. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 .SH POLICIES INTRODUCED BY CMAKE 3.9 .SS CMP0069 .sp \fBINTERPROCEDURAL_OPTIMIZATION\fP is enforced when enabled. .sp CMake 3.9 and newer prefer to add IPO flags whenever the \fBINTERPROCEDURAL_OPTIMIZATION\fP target property is enabled and produce an error if flags are not known to CMake for the current compiler. Since a given compiler may not support IPO flags in all environments in which it is used, it is now the project\(aqs responsibility to use the \fBCheckIPOSupported\fP module to check for support before enabling the \fBINTERPROCEDURAL_OPTIMIZATION\fP target property. This approach allows a project to conditionally activate IPO when supported. It also allows an end user to set the \fBCMAKE_INTERPROCEDURAL_OPTIMIZATION\fP variable in an environment known to support IPO even if the project does not enable the property. .sp Since CMake 3.8 and lower only honored \fBINTERPROCEDURAL_OPTIMIZATION\fP for the Intel compiler on Linux, some projects may unconditionally enable the target property. Policy \fBCMP0069\fP provides compatibility with such projects. .sp This policy takes effect whenever the IPO property is enabled. The \fBOLD\fP behavior for this policy is to add IPO flags only for Intel compiler on Linux. The \fBNEW\fP behavior for this policy is to add IPO flags for the current compiler or produce an error if CMake does not know the flags. .sp This policy was introduced in CMake version 3.9. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 Examples .sp Behave like CMake 3.8 and do not apply any IPO flags except for Intel compiler on Linux: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_minimum_required(VERSION 3.8) project(foo) # ... set_property(TARGET ... PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE) .ft P .fi .UNINDENT .UNINDENT .sp Use the \fBCheckIPOSupported\fP module to detect whether IPO is supported by the current compiler, environment, and CMake version. Produce a fatal error if support is not available: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_minimum_required(VERSION 3.9) # CMP0069 NEW project(foo) include(CheckIPOSupported) check_ipo_supported() # ... set_property(TARGET ... PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE) .ft P .fi .UNINDENT .UNINDENT .sp Apply IPO flags only if compiler supports it: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_minimum_required(VERSION 3.9) # CMP0069 NEW project(foo) include(CheckIPOSupported) # ... check_ipo_supported(RESULT result) if(result) set_property(TARGET ... PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE) endif() .ft P .fi .UNINDENT .UNINDENT .sp Apply IPO flags without any checks. This may lead to build errors if IPO is not supported by the compiler in the current environment. Produce an error if CMake does not know IPO flags for the current compiler: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_minimum_required(VERSION 3.9) # CMP0069 NEW project(foo) # ... set_property(TARGET ... PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE) .ft P .fi .UNINDENT .UNINDENT .SS CMP0068 .sp \fBRPATH\fP settings on macOS do not affect \fBinstall_name\fP\&. .sp CMake 3.9 and newer remove any effect the following settings may have on the \fBinstall_name\fP of a target on macOS: .INDENT 0.0 .IP \(bu 2 \fBBUILD_WITH_INSTALL_RPATH\fP target property .IP \(bu 2 \fBSKIP_BUILD_RPATH\fP target property .IP \(bu 2 \fBCMAKE_SKIP_RPATH\fP variable .IP \(bu 2 \fBCMAKE_SKIP_INSTALL_RPATH\fP variable .UNINDENT .sp Previously, setting \fBBUILD_WITH_INSTALL_RPATH\fP had the effect of setting both the \fBinstall_name\fP of a target to \fBINSTALL_NAME_DIR\fP and the \fBRPATH\fP to \fBINSTALL_RPATH\fP\&. In CMake 3.9, it only affects setting of \fBRPATH\fP\&. However, if one wants \fBINSTALL_NAME_DIR\fP to apply to the target in the build tree, one may set \fBBUILD_WITH_INSTALL_NAME_DIR\fP\&. .sp If \fBSKIP_BUILD_RPATH\fP, \fBCMAKE_SKIP_RPATH\fP or \fBCMAKE_SKIP_INSTALL_RPATH\fP were used to strip the directory portion of the \fBinstall_name\fP of a target, one may set \fBINSTALL_NAME_DIR=""\fP instead. .sp The \fBOLD\fP behavior of this policy is to use the \fBRPATH\fP settings for \fBinstall_name\fP on macOS. The \fBNEW\fP behavior of this policy is to ignore the \fBRPATH\fP settings for \fBinstall_name\fP on macOS. .sp This policy was introduced in CMake version 3.9. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 .SH POLICIES INTRODUCED BY CMAKE 3.8 .SS CMP0067 .sp Honor language standard in \fBtry_compile()\fP source\-file signature. .sp The \fBtry_compile()\fP source file signature is intended to allow callers to check whether they will be able to compile a given source file with the current toolchain. In order to match compiler behavior, any language standard mode should match. However, CMake 3.7 and below did not do this. CMake 3.8 and above prefer to honor the language standard settings for \fBC\fP, \fBCXX\fP (C++), and \fBCUDA\fP using the values of the variables: .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 This policy provides compatibility for projects that do not expect the language standard settings to be used automatically. .sp The \fBOLD\fP behavior of this policy is to ignore language standard setting variables when generating the \fBtry_compile\fP test project. The \fBNEW\fP behavior of this policy is to honor language standard setting variables. .sp This policy was introduced in CMake version 3.8. Unlike most policies, CMake version 3.13.2 does \fInot\fP warn by default when this policy is not set and simply uses OLD behavior. See documentation of the \fBCMAKE_POLICY_WARNING_CMP0067\fP variable to control the warning. .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 .SH POLICIES INTRODUCED BY CMAKE 3.7 .SS CMP0066 .sp Honor per\-config flags in \fBtry_compile()\fP source\-file signature. .sp The source file signature of the \fBtry_compile()\fP command uses the value of the \fBCMAKE__FLAGS\fP variable in the test project so that the test compilation works as it would in the main project. However, CMake 3.6 and below do not also honor config\-specific compiler flags such as those in the \fBCMAKE__FLAGS_DEBUG\fP variable. CMake 3.7 and above prefer to honor config\-specific compiler flags too. This policy provides compatibility for projects that do not expect config\-specific compiler flags to be used. .sp The \fBOLD\fP behavior of this policy is to ignore config\-specific flag variables like \fBCMAKE__FLAGS_DEBUG\fP and only use CMake\(aqs built\-in defaults for the current compiler and platform. .sp The \fBNEW\fP behavior of this policy is to honor config\-specific flag variabldes like \fBCMAKE__FLAGS_DEBUG\fP\&. .sp This policy was introduced in CMake version 3.7. Unlike most policies, CMake version 3.13.2 does \fInot\fP warn by default when this policy is not set and simply uses OLD behavior. See documentation of the \fBCMAKE_POLICY_WARNING_CMP0066\fP variable to control the warning. .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 .SH POLICIES INTRODUCED BY CMAKE 3.4 .SS CMP0065 .sp Do not add flags to export symbols from executables without the \fBENABLE_EXPORTS\fP target property. .sp CMake 3.3 and below, for historical reasons, always linked executables on some platforms with flags like \fB\-rdynamic\fP to export symbols from the executables for use by any plugins they may load via \fBdlopen\fP\&. CMake 3.4 and above prefer to do this only for executables that are explicitly marked with the \fBENABLE_EXPORTS\fP target property. .sp The \fBOLD\fP behavior of this policy is to always use the additional link flags when linking executables regardless of the value of the \fBENABLE_EXPORTS\fP target property. .sp The \fBNEW\fP behavior of this policy is to only use the additional link flags when linking executables if the \fBENABLE_EXPORTS\fP target property is set to \fBTrue\fP\&. .sp This policy was introduced in CMake version 3.4. Unlike most policies, CMake version 3.13.2 does \fInot\fP warn by default when this policy is not set and simply uses OLD behavior. See documentation of the \fBCMAKE_POLICY_WARNING_CMP0065\fP variable to control the warning. .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 CMP0064 .sp Recognize \fBTEST\fP as a operator for the \fBif()\fP command. .sp The \fBTEST\fP operator was added to the \fBif()\fP command to determine if a given test name was created by the \fBadd_test()\fP command. .sp The \fBOLD\fP behavior for this policy is to ignore the \fBTEST\fP operator. The \fBNEW\fP behavior is to interpret the \fBTEST\fP operator. .sp This policy was introduced in CMake version 3.4. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 .SH POLICIES INTRODUCED BY CMAKE 3.3 .SS CMP0063 .sp Honor visibility properties for all target types. .sp The \fB_VISIBILITY_PRESET\fP and \fBVISIBILITY_INLINES_HIDDEN\fP target properties affect visibility of symbols during dynamic linking. When first introduced these properties affected compilation of sources only in shared libraries, module libraries, and executables with the \fBENABLE_EXPORTS\fP property set. This was sufficient for the basic use cases of shared libraries and executables with plugins. However, some sources may be compiled as part of static libraries or object libraries and then linked into a shared library later. CMake 3.3 and above prefer to honor these properties for sources compiled in all target types. This policy preserves compatibility for projects expecting the properties to work only for some target types. .sp The \fBOLD\fP behavior for this policy is to ignore the visibility properties for static libraries, object libraries, and executables without exports. The \fBNEW\fP behavior for this policy is to honor the visibility properties for all target types. .sp This policy was introduced in CMake version 3.3. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0062 .sp Disallow install() of export() result. .sp The \fBexport()\fP command generates a file containing Imported Targets, which is suitable for use from the build directory. It is not suitable for installation because it contains absolute paths to buildsystem locations, and is particular to a single build configuration. .sp The \fBinstall(EXPORT)\fP generates and installs files which contain Imported Targets\&. These files are generated with relative paths (unless the user specifies absolute paths), and are designed for multi\-configuration use. See Creating Packages for more. .sp CMake 3.3 no longer allows the use of the \fBinstall(FILES)\fP command with the result of the \fBexport()\fP command. .sp The \fBOLD\fP behavior for this policy is to allow installing the result of an \fBexport()\fP command. The \fBNEW\fP behavior for this policy is not to allow installing the result of an \fBexport()\fP command. .sp This policy was introduced in CMake version 3.3. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0061 .sp CTest does not by default tell \fBmake\fP to ignore errors (\fB\-i\fP). .sp The \fBctest_build()\fP and \fBbuild_command()\fP commands no longer generate build commands for Makefile Generators with the \fB\-i\fP option. Previously this was done to help build as much of tested projects as possible. However, this behavior is not consistent with other generators and also causes the return code of the \fBmake\fP tool to be meaningless. .sp Of course users may still add this option manually by setting \fBCTEST_BUILD_COMMAND\fP or the \fBMAKECOMMAND\fP cache entry. See the CTest Build Step \fBMakeCommand\fP setting documentation for their effects. .sp The \fBOLD\fP behavior for this policy is to add \fB\-i\fP to \fBmake\fP calls in CTest. The \fBNEW\fP behavior for this policy is to not add \fB\-i\fP\&. .sp This policy was introduced in CMake version 3.3. Unlike most policies, CMake version 3.13.2 does \fInot\fP warn when this policy is not set and simply uses OLD behavior. .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 CMP0060 .sp Link libraries by full path even in implicit directories. .sp Policy \fBCMP0003\fP was introduced with the intention of always linking library files by full path when a full path is given to the \fBtarget_link_libraries()\fP command. However, on some platforms (e.g. HP\-UX) the compiler front\-end adds alternative library search paths for the current architecture (e.g. \fB/usr/lib/\fP has alternatives to libraries in \fB/usr/lib\fP for the current architecture). On such platforms the \fBfind_library()\fP may find a library such as \fB/usr/lib/libfoo.so\fP that does not belong to the current architecture. .sp Prior to policy \fBCMP0003\fP projects would still build in such cases because the incorrect library path would be converted to \fB\-lfoo\fP on the link line and the linker would find the proper library in the arch\-specific search path provided by the compiler front\-end implicitly. At the time we chose to remain compatible with such projects by always converting library files found in implicit link directories to \fB\-lfoo\fP flags to ask the linker to search for them. This approach allowed existing projects to continue to build while still linking to libraries outside implicit link directories via full path (such as those in the build tree). .sp CMake does allow projects to override this behavior by using an IMPORTED library target with its \fBIMPORTED_LOCATION\fP property set to the desired full path to a library file. In fact, many Find Modules are learning to provide Imported Targets instead of just the traditional \fBFoo_LIBRARIES\fP variable listing library files. However, this makes the link line generated for a library found by a Find Module depend on whether it is linked through an imported target or not, which is inconsistent. Furthermore, this behavior has been a source of confusion because the generated link line for a library file depends on its location. It is also problematic for projects trying to link statically because flags like \fB\-Wl,\-Bstatic \-lfoo \-Wl,\-Bdynamic\fP may be used to help the linker select \fBlibfoo.a\fP instead of \fBlibfoo.so\fP but then leak dynamic linking to following libraries. (See the \fBLINK_SEARCH_END_STATIC\fP target property for a solution typically used for that problem.) .sp When the special case for libraries in implicit link directories was first introduced the list of implicit link directories was simply hard\-coded (e.g. \fB/lib\fP, \fB/usr/lib\fP, and a few others). Since that time, CMake has learned to detect the implicit link directories used by the compiler front\-end. If necessary, the \fBfind_library()\fP command could be taught to use this information to help find libraries of the proper architecture. .sp For these reasons, CMake 3.3 and above prefer to drop the special case and link libraries by full path even when they are in implicit link directories. Policy \fBCMP0060\fP provides compatibility for existing projects. .sp The OLD behavior for this policy is to ask the linker to search for libraries whose full paths are known to be in implicit link directories. The NEW behavior for this policy is to link libraries by full path even if they are in implicit link directories. .sp This policy was introduced in CMake version 3.3. Unlike most policies, CMake version 3.13.2 does \fInot\fP warn by default when this policy is not set and simply uses OLD behavior. See documentation of the \fBCMAKE_POLICY_WARNING_CMP0060\fP variable to control the warning. .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 CMP0059 .sp Do not treat \fBDEFINITIONS\fP as a built\-in directory property. .sp CMake 3.3 and above no longer make a list of definitions available through the \fBDEFINITIONS\fP directory property. The \fBCOMPILE_DEFINITIONS\fP directory property may be used instead. .sp The \fBOLD\fP behavior for this policy is to provide the list of flags given so far to the \fBadd_definitions()\fP command. The \fBNEW\fP behavior is to behave as a normal user\-defined directory property. .sp This policy was introduced in CMake version 3.3. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0058 .sp Ninja requires custom command byproducts to be explicit. .sp When an intermediate file generated during the build is consumed by an expensive operation or a large tree of dependents, one may reduce the work needed for an incremental rebuild by updating the file timestamp only when its content changes. With this approach the generation rule must have a separate output file that is always updated with a new timestamp that is newer than any dependencies of the rule so that the build tool re\-runs the rule only when the input changes. We refer to the separate output file as a rule\(aqs \fIwitness\fP and the generated file as a rule\(aqs \fIbyproduct\fP\&. .sp Byproducts may not be listed as outputs because their timestamps are allowed to be older than the inputs. No build tools (like \fBmake\fP) that existed when CMake was designed have a way to express byproducts. Therefore CMake versions prior to 3.2 had no way to specify them. Projects typically left byproducts undeclared in the rules that generate them. For example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_custom_command( OUTPUT witness.txt COMMAND ${CMAKE_COMMAND} \-E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/input.txt byproduct.txt # timestamp may not change COMMAND ${CMAKE_COMMAND} \-E touch witness.txt DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/input.txt ) add_custom_target(Provider DEPENDS witness.txt) add_custom_command( OUTPUT generated.c COMMAND expensive\-task \-i byproduct.txt \-o generated.c DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/byproduct.txt ) add_library(Consumer generated.c) add_dependencies(Consumer Provider) .ft P .fi .UNINDENT .UNINDENT .sp This works well for all generators except \fBNinja\fP\&. The Ninja build tool sees a rule listing \fBbyproduct.txt\fP as a dependency and no rule listing it as an output. Ninja then complains that there is no way to satisfy the dependency and stops building even though there are order\-only dependencies that ensure \fBbyproduct.txt\fP will exist before its consumers need it. See discussion of this problem in \fI\%Ninja Issue 760\fP for further details on why Ninja works this way. .sp Instead of leaving byproducts undeclared in the rules that generate them, Ninja expects byproducts to be listed along with other outputs. Such rules may be marked with a \fBrestat\fP option that tells Ninja to check the timestamps of outputs after the rules run. This prevents byproducts whose timestamps do not change from causing their dependents to re\-build unnecessarily. .sp Since the above approach does not tell CMake what custom command generates \fBbyproduct.txt\fP, the Ninja generator does not have enough information to add the byproduct as an output of any rule. CMake 2.8.12 and above work around this problem and allow projects using the above approach to build by generating \fBphony\fP build rules to tell Ninja to tolerate such missing files. However, this workaround prevents Ninja from diagnosing a dependency that is really missing. It also works poorly in in\-source builds where every custom command dependency, even on source files, needs to be treated this way because CMake does not have enough information to know which files are generated as byproducts of custom commands. .sp CMake 3.2 introduced the \fBBYPRODUCTS\fP option to the \fBadd_custom_command()\fP and \fBadd_custom_target()\fP commands. This option allows byproducts to be specified explicitly: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_custom_command( OUTPUT witness.txt BYPRODUCTS byproduct.txt # explicit byproduct specification COMMAND ${CMAKE_COMMAND} \-E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/input.txt byproduct.txt # timestamp may not change \&... .ft P .fi .UNINDENT .UNINDENT .sp The \fBBYPRODUCTS\fP option is used by the \fBNinja\fP generator to list byproducts among the outputs of the custom commands that generate them, and is ignored by other generators. .sp CMake 3.3 and above prefer to require projects to specify custom command byproducts explicitly so that it can avoid using the \fBphony\fP rule workaround altogether. Policy \fBCMP0058\fP was introduced to provide compatibility with existing projects that still need the workaround. .sp This policy has no effect on generators other than \fBNinja\fP\&. The \fBOLD\fP behavior for this policy is to generate Ninja \fBphony\fP rules for unknown dependencies in the build tree. The \fBNEW\fP behavior for this policy is to not generate these and instead require projects to specify custom command \fBBYPRODUCTS\fP explicitly. .sp This policy was introduced in CMake version 3.3. CMake version 3.13.2 warns when it sees unknown dependencies in out\-of\-source build trees if the policy is not set and then uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set the policy to \fBOLD\fP or \fBNEW\fP explicitly. The policy setting must be in scope at the end of the top\-level \fBCMakeLists.txt\fP file of the project and has global effect. .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 CMP0057 .sp Support new \fBif()\fP IN_LIST operator. .sp CMake 3.3 adds support for the new IN_LIST operator. .sp The \fBOLD\fP behavior for this policy is to ignore the IN_LIST operator. The \fBNEW\fP behavior is to interpret the IN_LIST operator. .sp This policy was introduced in CMake version 3.3. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 .SH POLICIES INTRODUCED BY CMAKE 3.2 .SS CMP0056 .sp Honor link flags in \fBtry_compile()\fP source\-file signature. .sp The \fBtry_compile()\fP command source\-file signature generates a \fBCMakeLists.txt\fP file to build the source file into an executable. In order to compile the source the same way as it might be compiled by the calling project, the generated project sets the value of the \fBCMAKE__FLAGS\fP variable to that in the calling project. The value of the \fBCMAKE_EXE_LINKER_FLAGS\fP variable may be needed in some cases too, but CMake 3.1 and lower did not set it in the generated project. CMake 3.2 and above prefer to set it so that linker flags are honored as well as compiler flags. This policy provides compatibility with the pre\-3.2 behavior. .sp The OLD behavior for this policy is to not set the value of the \fBCMAKE_EXE_LINKER_FLAGS\fP variable in the generated test project. The NEW behavior for this policy is to set the value of the \fBCMAKE_EXE_LINKER_FLAGS\fP variable in the test project to the same as it is in the calling project. .sp If the project code does not set the policy explicitly, users may set it on the command line by defining the \fBCMAKE_POLICY_DEFAULT_CMP0056\fP variable in the cache. .sp This policy was introduced in CMake version 3.2. Unlike most policies, CMake version 3.13.2 does \fInot\fP warn by default when this policy is not set and simply uses OLD behavior. See documentation of the \fBCMAKE_POLICY_WARNING_CMP0056\fP variable to control the warning. .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 CMP0055 .sp Strict checking for the \fBbreak()\fP command. .sp CMake 3.1 and lower allowed calls to the \fBbreak()\fP command outside of a loop context and also ignored any given arguments. This was undefined behavior. .sp The OLD behavior for this policy is to allow \fBbreak()\fP to be placed outside of loop contexts and ignores any arguments. The NEW behavior for this policy is to issue an error if a misplaced break or any arguments are found. .sp This policy was introduced in CMake version 3.2. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 .SH POLICIES INTRODUCED BY CMAKE 3.1 .SS CMP0054 .sp Only interpret \fBif()\fP arguments as variables or keywords when unquoted. .sp CMake 3.1 and above no longer implicitly dereference variables or interpret keywords in an \fBif()\fP command argument when it is a Quoted Argument or a Bracket Argument\&. .sp The \fBOLD\fP behavior for this policy is to dereference variables and interpret keywords even if they are quoted or bracketed. The \fBNEW\fP behavior is to not dereference variables or interpret keywords that have been quoted or bracketed. .sp Given the following partial example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set(A E) set(E "") if("${A}" STREQUAL "") message("Result is TRUE before CMake 3.1 or when CMP0054 is OLD") else() message("Result is FALSE in CMake 3.1 and above if CMP0054 is NEW") endif() .ft P .fi .UNINDENT .UNINDENT .sp After explicit expansion of variables this gives: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if("E" STREQUAL "") .ft P .fi .UNINDENT .UNINDENT .sp With the policy set to \fBOLD\fP implicit expansion reduces this semantically to: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if("" STREQUAL "") .ft P .fi .UNINDENT .UNINDENT .sp With the policy set to \fBNEW\fP the quoted arguments will not be further dereferenced: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if("E" STREQUAL "") .ft P .fi .UNINDENT .UNINDENT .sp This policy was introduced in CMake version 3.1. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0053 .sp Simplify variable reference and escape sequence evaluation. .sp CMake 3.1 introduced a much faster implementation of evaluation of the Variable References and Escape Sequences documented in the \fBcmake\-language(7)\fP manual. While the behavior is identical to the legacy implementation in most cases, some corner cases were cleaned up to simplify the behavior. Specifically: .INDENT 0.0 .IP \(bu 2 Expansion of \fB@VAR@\fP reference syntax defined by the \fBconfigure_file()\fP and \fBstring(CONFIGURE)\fP commands is no longer performed in other contexts. .IP \(bu 2 Literal \fB${VAR}\fP reference syntax may contain only alphanumeric characters (\fBA\-Z\fP, \fBa\-z\fP, \fB0\-9\fP) and the characters \fB_\fP, \fB\&.\fP, \fB/\fP, \fB\-\fP, and \fB+\fP\&. Note that \fB$\fP is technically allowed in the \fBNEW\fP behavior, but is invalid for \fBOLD\fP behavior. This is due to an oversight during the implementation of \fI\%CMP0053\fP and its use as a literal variable reference is discouraged for this reason. Variables with other characters in their name may still be referenced indirectly, e.g. .INDENT 2.0 .INDENT 3.5 .sp .nf .ft C set(varname "otherwise & disallowed $ characters") message("${${varname}}") .ft P .fi .UNINDENT .UNINDENT .IP \(bu 2 The setting of policy \fBCMP0010\fP is not considered, so improper variable reference syntax is always an error. .IP \(bu 2 More characters are allowed to be escaped in variable names. Previously, only \fB()#" \e@^\fP were valid characters to escape. Now any non\-alphanumeric, non\-semicolon, non\-NUL character may be escaped following the \fBescape_identity\fP production in the Escape Sequences section of the \fBcmake\-language(7)\fP manual. .UNINDENT .sp The \fBOLD\fP behavior for this policy is to honor the legacy behavior for variable references and escape sequences. The \fBNEW\fP behavior is to use the simpler variable expansion and escape sequence evaluation rules. .sp This policy was introduced in CMake version 3.1. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0052 .sp Reject source and build dirs in installed INTERFACE_INCLUDE_DIRECTORIES. .sp CMake 3.0 and lower allowed subdirectories of the source directory or build directory to be in the \fBINTERFACE_INCLUDE_DIRECTORIES\fP of installed and exported targets, if the directory was also a subdirectory of the installation prefix. This makes the installation depend on the existence of the source dir or binary dir, and the installation will be broken if either are removed after installation. .sp See Include Directories and Usage Requirements for more on specifying include directories for targets. .sp The OLD behavior for this policy is to export the content of the \fBINTERFACE_INCLUDE_DIRECTORIES\fP with the source or binary directory. The NEW behavior for this policy is to issue an error if such a directory is used. .sp This policy was introduced in CMake version 3.1. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0051 .sp List TARGET_OBJECTS in SOURCES target property. .sp CMake 3.0 and lower did not include the \fBTARGET_OBJECTS\fP \fBgenerator expression\fP when returning the \fBSOURCES\fP target property. .sp Configure\-time CMake code is not able to handle generator expressions. If using the \fBSOURCES\fP target property at configure time, it may be necessary to first remove generator expressions using the \fBstring(GENEX_STRIP)\fP command. Generate\-time CMake code such as \fBfile(GENERATE)\fP can handle the content without stripping. .sp The \fBOLD\fP behavior for this policy is to omit \fBTARGET_OBJECTS\fP expressions from the \fBSOURCES\fP target property. The \fBNEW\fP behavior for this policy is to include \fBTARGET_OBJECTS\fP expressions in the output. .sp This policy was introduced in CMake version 3.1. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 .SH POLICIES INTRODUCED BY CMAKE 3.0 .SS CMP0050 .sp Disallow add_custom_command SOURCE signatures. .sp CMake 2.8.12 and lower allowed a signature for \fBadd_custom_command()\fP which specified an input to a command. This was undocumented behavior. Modern use of CMake associates custom commands with their output, rather than their input. .sp The OLD behavior for this policy is to allow the use of \fBadd_custom_command()\fP SOURCE signatures. The NEW behavior for this policy is to issue an error if such a signature is used. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0049 .sp Do not expand variables in target source entries. .sp CMake 2.8.12 and lower performed and extra layer of variable expansion when evaluating source file names: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C set(a_source foo.c) add_executable(foo \e${a_source}) .ft P .fi .UNINDENT .UNINDENT .sp This was undocumented behavior. .sp The OLD behavior for this policy is to expand such variables when processing the target sources. The NEW behavior for this policy is to issue an error if such variables need to be expanded. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0048 .sp The \fBproject()\fP command manages VERSION variables. .sp CMake version 3.0 introduced the \fBVERSION\fP option of the \fBproject()\fP command to specify a project version as well as the name. In order to keep \fBPROJECT_VERSION\fP and related variables consistent with variable \fBPROJECT_NAME\fP it is necessary to set the VERSION variables to the empty string when no \fBVERSION\fP is given to \fBproject()\fP\&. However, this can change behavior for existing projects that set VERSION variables themselves since \fBproject()\fP may now clear them. This policy controls the behavior for compatibility with such projects. .sp The OLD behavior for this policy is to leave VERSION variables untouched. The NEW behavior for this policy is to set VERSION as documented by the \fBproject()\fP command. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0047 .sp Use \fBQCC\fP compiler id for the qcc drivers on QNX. .sp CMake 3.0 and above recognize that the QNX qcc compiler driver is different from the GNU compiler. CMake now prefers to present this to projects by setting the \fBCMAKE__COMPILER_ID\fP variable to \fBQCC\fP instead of \fBGNU\fP\&. However, existing projects may assume the compiler id for QNX qcc is just \fBGNU\fP as it was in CMake versions prior to 3.0. Therefore this policy determines for QNX qcc which compiler id to report in the \fBCMAKE__COMPILER_ID\fP variable after language \fB\fP is enabled by the \fBproject()\fP or \fBenable_language()\fP command. The policy must be set prior to the invocation of either command. .sp The OLD behavior for this policy is to use the \fBGNU\fP compiler id for the qcc and QCC compiler drivers. The NEW behavior for this policy is to use the \fBQCC\fP compiler id for those drivers. .sp This policy was introduced in CMake version 3.0. Use the \fBcmake_policy()\fP command to set this policy to OLD or NEW explicitly. Unlike most policies, CMake version 3.13.2 does \fInot\fP warn by default when this policy is not set and simply uses OLD behavior. See documentation of the \fBCMAKE_POLICY_WARNING_CMP0047\fP variable to control the warning. .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 CMP0046 .sp Error on non\-existent dependency in add_dependencies. .sp CMake 2.8.12 and lower silently ignored non\-existent dependencies listed in the \fBadd_dependencies()\fP command. .sp The OLD behavior for this policy is to silently ignore non\-existent dependencies. The NEW behavior for this policy is to report an error if non\-existent dependencies are listed in the \fBadd_dependencies()\fP command. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0045 .sp Error on non\-existent target in get_target_property. .sp In CMake 2.8.12 and lower, the \fBget_target_property()\fP command accepted a non\-existent target argument without issuing any error or warning. The result variable is set to a \fB\-NOTFOUND\fP value. .sp The OLD behavior for this policy is to issue no warning and set the result variable to a \fB\-NOTFOUND\fP value. The NEW behavior for this policy is to issue a \fBFATAL_ERROR\fP if the command is called with a non\-existent target. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0044 .sp Case sensitive \fB_COMPILER_ID\fP generator expressions .sp CMake 2.8.12 introduced the \fB_COMPILER_ID\fP \fBgenerator expressions\fP to allow comparison of the \fBCMAKE__COMPILER_ID\fP with a test value. The possible valid values are lowercase, but the comparison with the test value was performed case\-insensitively. .sp The OLD behavior for this policy is to perform a case\-insensitive comparison with the value in the \fB_COMPILER_ID\fP expression. The NEW behavior for this policy is to perform a case\-sensitive comparison with the value in the \fB_COMPILER_ID\fP expression. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0043 .sp Ignore COMPILE_DEFINITIONS_ properties .sp CMake 2.8.12 and lower allowed setting the \fBCOMPILE_DEFINITIONS_\fP target property and \fBCOMPILE_DEFINITIONS_\fP directory property to apply configuration\-specific compile definitions. .sp Since CMake 2.8.10, the \fBCOMPILE_DEFINITIONS\fP property has supported \fBgenerator expressions\fP for setting configuration\-dependent content. The continued existence of the suffixed variables is redundant, and causes a maintenance burden. Population of the \fBCOMPILE_DEFINITIONS_DEBUG\fP property may be replaced with a population of \fBCOMPILE_DEFINITIONS\fP directly or via \fBtarget_compile_definitions()\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # Old Interfaces: set_property(TARGET tgt APPEND PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG_MODE ) set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_DEBUG DIR_DEBUG_MODE ) # New Interfaces: set_property(TARGET tgt APPEND PROPERTY COMPILE_DEFINITIONS $<$:DEBUG_MODE> ) target_compile_definitions(tgt PRIVATE $<$:DEBUG_MODE>) set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$:DIR_DEBUG_MODE> ) .ft P .fi .UNINDENT .UNINDENT .sp The OLD behavior for this policy is to consume the content of the suffixed \fBCOMPILE_DEFINITIONS_\fP target property when generating the compilation command. The NEW behavior for this policy is to ignore the content of the \fBCOMPILE_DEFINITIONS_\fP target property . .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0042 .sp \fBMACOSX_RPATH\fP is enabled by default. .sp CMake 2.8.12 and newer has support for using \fB@rpath\fP in a target\(aqs install name. This was enabled by setting the target property \fBMACOSX_RPATH\fP\&. The \fB@rpath\fP in an install name is a more flexible and powerful mechanism than \fB@executable_path\fP or \fB@loader_path\fP for locating shared libraries. .sp CMake 3.0 and later prefer this property to be ON by default. Projects wanting \fB@rpath\fP in a target\(aqs install name may remove any setting of the \fBINSTALL_NAME_DIR\fP and \fBCMAKE_INSTALL_NAME_DIR\fP variables. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0041 .sp Error on relative include with generator expression. .sp Diagnostics in CMake 2.8.12 and lower silently ignored an entry in the \fBINTERFACE_INCLUDE_DIRECTORIES\fP of a target if it contained a generator expression at any position. .sp The path entries in that target property should not be relative. High\-level API should ensure that by adding either a source directory or a install directory prefix, as appropriate. .sp As an additional diagnostic, the \fBINTERFACE_INCLUDE_DIRECTORIES\fP generated on an \fBIMPORTED\fP target for the install location should not contain paths in the source directory or the build directory. .sp The OLD behavior for this policy is to ignore relative path entries if they contain a generator expression. The NEW behavior for this policy is to report an error if a generator expression appears in another location and the path is relative. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0040 .sp The target in the \fBTARGET\fP signature of \fBadd_custom_command()\fP must exist and must be defined in the current directory. .sp CMake 2.8.12 and lower silently ignored a custom command created with the \fBTARGET\fP signature of \fBadd_custom_command()\fP if the target is unknown or was defined outside the current directory. .sp The \fBOLD\fP behavior for this policy is to ignore custom commands for unknown targets. The \fBNEW\fP behavior for this policy is to report an error if the target referenced in \fBadd_custom_command()\fP is unknown or was defined outside the current directory. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses \fBOLD\fP behavior. Use the \fBcmake_policy()\fP command to set it to \fBOLD\fP or \fBNEW\fP explicitly. .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 CMP0039 .sp Utility targets may not have link dependencies. .sp CMake 2.8.12 and lower allowed using utility targets in the left hand side position of the \fBtarget_link_libraries()\fP command. This is an indicator of a bug in user code. .sp The OLD behavior for this policy is to ignore attempts to set the link libraries of utility targets. The NEW behavior for this policy is to report an error if an attempt is made to set the link libraries of a utility target. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0038 .sp Targets may not link directly to themselves. .sp CMake 2.8.12 and lower allowed a build target to link to itself directly with a \fBtarget_link_libraries()\fP call. This is an indicator of a bug in user code. .sp The OLD behavior for this policy is to ignore targets which list themselves in their own link implementation. The NEW behavior for this policy is to report an error if a target attempts to link to itself. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0037 .sp Target names should not be reserved and should match a validity pattern. .sp CMake 2.8.12 and lower allowed creating targets using \fBadd_library()\fP, \fBadd_executable()\fP and \fBadd_custom_target()\fP with unrestricted choice for the target name. Newer cmake features such as \fBcmake\-generator\-expressions(7)\fP and some diagnostics expect target names to match a restricted pattern. .sp Target names may contain upper and lower case letters, numbers, the underscore character (_), dot(.), plus(+) and minus(\-). As a special case, ALIAS targets and IMPORTED targets may contain two consecutive colons. .sp Target names reserved by one or more CMake generators are not allowed. Among others these include "all", "clean", "help", and "install". .sp Target names associated with optional features, such as "test" and "package", may also be reserved. CMake 3.10 and below always reserve them. CMake 3.11 and above reserve them only when the corresponding feature is enabled (e.g. by including the \fBCTest\fP or \fBCPack\fP modules). .sp The OLD behavior for this policy is to allow creating targets with reserved names or which do not match the validity pattern. The NEW behavior for this policy is to report an error if an add_* command is used with an invalid target name. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0036 .sp The \fBbuild_name()\fP command should not be called. .sp This command was added in May 2001 to compute a name for the current operating system and compiler combination. The command has long been documented as discouraged and replaced by the \fBCMAKE_SYSTEM\fP and \fBCMAKE__COMPILER\fP variables. .sp CMake >= 3.0 prefer that this command never be called. The OLD behavior for this policy is to allow the command to be called. The NEW behavior for this policy is to issue a FATAL_ERROR when the command is called. .sp This policy was introduced in CMake version 3.0\&. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0035 .sp The \fBvariable_requires()\fP command should not be called. .sp This command was introduced in November 2001 to perform some conditional logic. It has long been replaced by the \fBif()\fP command. .sp CMake >= 3.0 prefer that this command never be called. The OLD behavior for this policy is to allow the command to be called. The NEW behavior for this policy is to issue a FATAL_ERROR when the command is called. .sp This policy was introduced in CMake version 3.0\&. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0034 .sp The \fButility_source()\fP command should not be called. .sp This command was introduced in March 2001 to help build executables used to generate other files. This approach has long been replaced by \fBadd_executable()\fP combined with \fBadd_custom_command()\fP\&. .sp CMake >= 3.0 prefer that this command never be called. The OLD behavior for this policy is to allow the command to be called. The NEW behavior for this policy is to issue a FATAL_ERROR when the command is called. .sp This policy was introduced in CMake version 3.0\&. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0033 .sp The \fBexport_library_dependencies()\fP command should not be called. .sp This command was added in January 2003 to export \fB_LIB_DEPENDS\fP internal CMake cache entries to a file for installation with a project. This was used at the time to allow transitive link dependencies to work for applications outside of the original build tree of a project. The functionality has been superseded by the \fBexport()\fP and \fBinstall(EXPORT)\fP commands. .sp CMake >= 3.0 prefer that this command never be called. The OLD behavior for this policy is to allow the command to be called. The NEW behavior for this policy is to issue a FATAL_ERROR when the command is called. .sp This policy was introduced in CMake version 3.0\&. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0032 .sp The \fBoutput_required_files()\fP command should not be called. .sp This command was added in June 2001 to expose the then\-current CMake implicit dependency scanner. CMake\(aqs real implicit dependency scanner has evolved since then but is not exposed through this command. The scanning capabilities of this command are very limited and this functionality is better achieved through dedicated outside tools. .sp CMake >= 3.0 prefer that this command never be called. The OLD behavior for this policy is to allow the command to be called. The NEW behavior for this policy is to issue a FATAL_ERROR when the command is called. .sp This policy was introduced in CMake version 3.0\&. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0031 .sp The \fBload_command()\fP command should not be called. .sp This command was added in August 2002 to allow projects to add arbitrary commands implemented in C or C++. However, it does not work when the toolchain in use does not match the ABI of the CMake process. It has been mostly superseded by the \fBmacro()\fP and \fBfunction()\fP commands. .sp CMake >= 3.0 prefer that this command never be called. The OLD behavior for this policy is to allow the command to be called. The NEW behavior for this policy is to issue a FATAL_ERROR when the command is called. .sp This policy was introduced in CMake version 3.0\&. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0030 .sp The \fBuse_mangled_mesa()\fP command should not be called. .sp This command was created in September 2001 to support VTK before modern CMake language and custom command capabilities. VTK has not used it in years. .sp CMake >= 3.0 prefer that this command never be called. The OLD behavior for this policy is to allow the command to be called. The NEW behavior for this policy is to issue a FATAL_ERROR when the command is called. .sp This policy was introduced in CMake version 3.0\&. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0029 .sp The \fBsubdir_depends()\fP command should not be called. .sp The implementation of this command has been empty since December 2001 but was kept in CMake for compatibility for a long time. .sp CMake >= 3.0 prefer that this command never be called. The OLD behavior for this policy is to allow the command to be called. The NEW behavior for this policy is to issue a FATAL_ERROR when the command is called. .sp This policy was introduced in CMake version 3.0\&. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0028 .sp Double colon in target name means ALIAS or IMPORTED target. .sp CMake 2.8.12 and lower allowed the use of targets and files with double colons in target_link_libraries, with some buildsystem generators. .sp The use of double\-colons is a common pattern used to namespace IMPORTED targets and ALIAS targets. When computing the link dependencies of a target, the name of each dependency could either be a target, or a file on disk. Previously, if a target was not found with a matching name, the name was considered to refer to a file on disk. This can lead to confusing error messages if there is a typo in what should be a target name. .sp The OLD behavior for this policy is to search for targets, then files on disk, even if the search term contains double\-colons. The NEW behavior for this policy is to issue a FATAL_ERROR if a link dependency contains double\-colons but is not an IMPORTED target or an ALIAS target. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0027 .sp Conditionally linked imported targets with missing include directories. .sp CMake 2.8.11 introduced introduced the concept of INTERFACE_INCLUDE_DIRECTORIES, and a check at cmake time that the entries in the INTERFACE_INCLUDE_DIRECTORIES of an IMPORTED target actually exist. CMake 2.8.11 also introduced generator expression support in the target_link_libraries command. However, if an imported target is linked as a result of a generator expression evaluation, the entries in the INTERFACE_INCLUDE_DIRECTORIES of that target were not checked for existence as they should be. .sp The OLD behavior of this policy is to report a warning if an entry in the INTERFACE_INCLUDE_DIRECTORIES of a generator\-expression conditionally linked IMPORTED target does not exist. .sp The NEW behavior of this policy is to report an error if an entry in the INTERFACE_INCLUDE_DIRECTORIES of a generator\-expression conditionally linked IMPORTED target does not exist. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0026 .sp Disallow use of the LOCATION property for build targets. .sp CMake 2.8.12 and lower allowed reading the LOCATION target property (and configuration\-specific variants) to determine the eventual location of build targets. This relies on the assumption that all necessary information is available at configure\-time to determine the final location and filename of the target. However, this property is not fully determined until later at generate\-time. At generate time, the $ generator expression can be used to determine the eventual LOCATION of a target output. .sp Code which reads the LOCATION target property can be ported to use the $ generator expression together with the file(GENERATE) subcommand to generate a file containing the target location. .sp The OLD behavior for this policy is to allow reading the LOCATION properties from build\-targets. The NEW behavior for this policy is to not to allow reading the LOCATION properties from build\-targets. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0025 .sp Compiler id for Apple Clang is now \fBAppleClang\fP\&. .sp CMake 3.0 and above recognize that Apple Clang is a different compiler than upstream Clang and that they have different version numbers. CMake now prefers to present this to projects by setting the \fBCMAKE__COMPILER_ID\fP variable to \fBAppleClang\fP instead of \fBClang\fP\&. However, existing projects may assume the compiler id for Apple Clang is just \fBClang\fP as it was in CMake versions prior to 3.0. Therefore this policy determines for Apple Clang which compiler id to report in the \fBCMAKE__COMPILER_ID\fP variable after language \fB\fP is enabled by the \fBproject()\fP or \fBenable_language()\fP command. The policy must be set prior to the invocation of either command. .sp The OLD behavior for this policy is to use compiler id \fBClang\fP\&. The NEW behavior for this policy is to use compiler id \fBAppleClang\fP\&. .sp This policy was introduced in CMake version 3.0. Use the \fBcmake_policy()\fP command to set this policy to OLD or NEW explicitly. Unlike most policies, CMake version 3.13.2 does \fInot\fP warn by default when this policy is not set and simply uses OLD behavior. See documentation of the \fBCMAKE_POLICY_WARNING_CMP0025\fP variable to control the warning. .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 CMP0024 .sp Disallow include export result. .sp CMake 2.8.12 and lower allowed use of the include() command with the result of the export() command. This relies on the assumption that the export() command has an immediate effect at configure\-time during a cmake run. Certain properties of targets are not fully determined until later at generate\-time, such as the link language and complete list of link libraries. Future refactoring will change the effect of the export() command to be executed at generate\-time. Use ALIAS targets instead in cases where the goal is to refer to targets by another name. .sp The OLD behavior for this policy is to allow including the result of an export() command. The NEW behavior for this policy is not to allow including the result of an export() command. .sp This policy was introduced in CMake version 3.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 .SH POLICIES INTRODUCED BY CMAKE 2.8 .SS CMP0023 .sp Plain and keyword target_link_libraries signatures cannot be mixed. .sp CMake 2.8.12 introduced the target_link_libraries signature using the PUBLIC, PRIVATE, and INTERFACE keywords to generalize the LINK_PUBLIC and LINK_PRIVATE keywords introduced in CMake 2.8.7. Use of signatures with any of these keywords sets the link interface of a target explicitly, even if empty. This produces confusing behavior when used in combination with the historical behavior of the plain target_link_libraries signature. For example, consider the code: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_libraries(mylib A) target_link_libraries(mylib PRIVATE B) .ft P .fi .UNINDENT .UNINDENT .sp After the first line the link interface has not been set explicitly so CMake would use the link implementation, A, as the link interface. However, the second line sets the link interface to empty. In order to avoid this subtle behavior CMake now prefers to disallow mixing the plain and keyword signatures of target_link_libraries for a single target. .sp The OLD behavior for this policy is to allow keyword and plain target_link_libraries signatures to be mixed. The NEW behavior for this policy is to not to allow mixing of the keyword and plain signatures. .sp This policy was introduced in CMake version 2.8.12. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0022 .sp INTERFACE_LINK_LIBRARIES defines the link interface. .sp CMake 2.8.11 constructed the \(aqlink interface\(aq of a target from properties matching \fB(IMPORTED_)?LINK_INTERFACE_LIBRARIES(_)?\fP\&. The modern way to specify config\-sensitive content is to use generator expressions and the \fBIMPORTED_\fP prefix makes uniform processing of the link interface with generator expressions impossible. The INTERFACE_LINK_LIBRARIES target property was introduced as a replacement in CMake 2.8.12. This new property is named consistently with the INTERFACE_COMPILE_DEFINITIONS, INTERFACE_INCLUDE_DIRECTORIES and INTERFACE_COMPILE_OPTIONS properties. For in\-build targets, CMake will use the INTERFACE_LINK_LIBRARIES property as the source of the link interface only if policy CMP0022 is NEW. When exporting a target which has this policy set to NEW, only the INTERFACE_LINK_LIBRARIES property will be processed and generated for the IMPORTED target by default. A new option to the install(EXPORT) and export commands allows export of the old\-style properties for compatibility with downstream users of CMake versions older than 2.8.12. The target_link_libraries command will no longer populate the properties matching LINK_INTERFACE_LIBRARIES(_)? if this policy is NEW. .sp Warning\-free future\-compatible code which works with CMake 2.8.7 onwards can be written by using the \fBLINK_PRIVATE\fP and \fBLINK_PUBLIC\fP keywords of \fBtarget_link_libraries()\fP\&. .sp The OLD behavior for this policy is to ignore the INTERFACE_LINK_LIBRARIES property for in\-build targets. The NEW behavior for this policy is to use the INTERFACE_LINK_LIBRARIES property for in\-build targets, and ignore the old properties matching \fB(IMPORTED_)?LINK_INTERFACE_LIBRARIES(_)?\fP\&. .sp This policy was introduced in CMake version 2.8.12. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0021 .sp Fatal error on relative paths in INCLUDE_DIRECTORIES target property. .sp CMake 2.8.10.2 and lower allowed the INCLUDE_DIRECTORIES target property to contain relative paths. The base path for such relative entries is not well defined. CMake 2.8.12 issues a FATAL_ERROR if the INCLUDE_DIRECTORIES property contains a relative path. .sp The OLD behavior for this policy is not to warn about relative paths in the INCLUDE_DIRECTORIES target property. The NEW behavior for this policy is to issue a FATAL_ERROR if INCLUDE_DIRECTORIES contains a relative path. .sp This policy was introduced in CMake version 2.8.12. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0020 .sp Automatically link Qt executables to qtmain target on Windows. .sp CMake 2.8.10 and lower required users of Qt to always specify a link dependency to the qtmain.lib static library manually on Windows. CMake 2.8.11 gained the ability to evaluate generator expressions while determining the link dependencies from IMPORTED targets. This allows CMake itself to automatically link executables which link to Qt to the qtmain.lib library when using IMPORTED Qt targets. For applications already linking to qtmain.lib, this should have little impact. For applications which supply their own alternative WinMain implementation and for applications which use the QAxServer library, this automatic linking will need to be disabled as per the documentation. .sp The OLD behavior for this policy is not to link executables to qtmain.lib automatically when they link to the QtCore IMPORTED target. The NEW behavior for this policy is to link executables to qtmain.lib automatically when they link to QtCore IMPORTED target. .sp This policy was introduced in CMake version 2.8.11. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0019 .sp Do not re\-expand variables in include and link information. .sp CMake 2.8.10 and lower re\-evaluated values given to the include_directories, link_directories, and link_libraries commands to expand any leftover variable references at the end of the configuration step. This was for strict compatibility with VERY early CMake versions because all variable references are now normally evaluated during CMake language processing. CMake 2.8.11 and higher prefer to skip the extra evaluation. .sp The OLD behavior for this policy is to re\-evaluate the values for strict compatibility. The NEW behavior for this policy is to leave the values untouched. .sp This policy was introduced in CMake version 2.8.11. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0018 .sp Ignore CMAKE_SHARED_LIBRARY__FLAGS variable. .sp CMake 2.8.8 and lower compiled sources in SHARED and MODULE libraries using the value of the undocumented CMAKE_SHARED_LIBRARY__FLAGS platform variable. The variable contained platform\-specific flags needed to compile objects for shared libraries. Typically it included a flag such as \-fPIC for position independent code but also included other flags needed on certain platforms. CMake 2.8.9 and higher prefer instead to use the POSITION_INDEPENDENT_CODE target property to determine what targets should be position independent, and new undocumented platform variables to select flags while ignoring CMAKE_SHARED_LIBRARY__FLAGS completely. .sp The default for either approach produces identical compilation flags, but if a project modifies CMAKE_SHARED_LIBRARY__FLAGS from its original value this policy determines which approach to use. .sp The OLD behavior for this policy is to ignore the POSITION_INDEPENDENT_CODE property for all targets and use the modified value of CMAKE_SHARED_LIBRARY__FLAGS for SHARED and MODULE libraries. .sp The NEW behavior for this policy is to ignore CMAKE_SHARED_LIBRARY__FLAGS whether it is modified or not and honor the POSITION_INDEPENDENT_CODE target property. .sp This policy was introduced in CMake version 2.8.9. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0017 .sp Prefer files from the CMake module directory when including from there. .sp Starting with CMake 2.8.4, if a cmake\-module shipped with CMake (i.e. located in the CMake module directory) calls include() or find_package(), the files located in the CMake module directory are preferred over the files in CMAKE_MODULE_PATH. This makes sure that the modules belonging to CMake always get those files included which they expect, and against which they were developed and tested. In all other cases, the files found in CMAKE_MODULE_PATH still take precedence over the ones in the CMake module directory. The OLD behavior is to always prefer files from CMAKE_MODULE_PATH over files from the CMake modules directory. .sp This policy was introduced in CMake version 2.8.4. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0016 .sp target_link_libraries() reports error if its only argument is not a target. .sp In CMake 2.8.2 and lower the target_link_libraries() command silently ignored if it was called with only one argument, and this argument wasn\(aqt a valid target. In CMake 2.8.3 and above it reports an error in this case. .sp This policy was introduced in CMake version 2.8.3. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0015 .sp link_directories() treats paths relative to the source dir. .sp In CMake 2.8.0 and lower the link_directories() command passed relative paths unchanged to the linker. In CMake 2.8.1 and above the link_directories() command prefers to interpret relative paths with respect to CMAKE_CURRENT_SOURCE_DIR, which is consistent with include_directories() and other commands. The OLD behavior for this policy is to use relative paths verbatim in the linker command. The NEW behavior for this policy is to convert relative paths to absolute paths by appending the relative path to CMAKE_CURRENT_SOURCE_DIR. .sp This policy was introduced in CMake version 2.8.1. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0014 .sp Input directories must have CMakeLists.txt. .sp CMake versions before 2.8 silently ignored missing CMakeLists.txt files in directories referenced by add_subdirectory() or subdirs(), treating them as if present but empty. In CMake 2.8.0 and above this policy determines whether or not the case is an error. The OLD behavior for this policy is to silently ignore the problem. The NEW behavior for this policy is to report an error. .sp This policy was introduced in CMake version 2.8.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0013 .sp Duplicate binary directories are not allowed. .sp CMake 2.6.3 and below silently permitted add_subdirectory() calls to create the same binary directory multiple times. During build system generation files would be written and then overwritten in the build tree and could lead to strange behavior. CMake 2.6.4 and above explicitly detect duplicate binary directories. CMake 2.6.4 always considers this case an error. In CMake 2.8.0 and above this policy determines whether or not the case is an error. The OLD behavior for this policy is to allow duplicate binary directories. The NEW behavior for this policy is to disallow duplicate binary directories with an error. .sp This policy was introduced in CMake version 2.8.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0012 .sp if() recognizes numbers and boolean constants. .sp In CMake versions 2.6.4 and lower the if() command implicitly dereferenced arguments corresponding to variables, even those named like numbers or boolean constants, except for 0 and 1. Numbers and boolean constants such as true, false, yes, no, on, off, y, n, notfound, ignore (all case insensitive) were recognized in some cases but not all. For example, the code "if(TRUE)" might have evaluated as false. Numbers such as 2 were recognized only in boolean expressions like "if(NOT 2)" (leading to false) but not as a single\-argument like "if(2)" (also leading to false). Later versions of CMake prefer to treat numbers and boolean constants literally, so they should not be used as variable names. .sp The OLD behavior for this policy is to implicitly dereference variables named like numbers and boolean constants. The NEW behavior for this policy is to recognize numbers and boolean constants without dereferencing variables with such names. .sp This policy was introduced in CMake version 2.8.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 .SH POLICIES INTRODUCED BY CMAKE 2.6 .SS CMP0011 .sp Included scripts do automatic cmake_policy PUSH and POP. .sp In CMake 2.6.2 and below, CMake Policy settings in scripts loaded by the include() and find_package() commands would affect the includer. Explicit invocations of cmake_policy(PUSH) and cmake_policy(POP) were required to isolate policy changes and protect the includer. While some scripts intend to affect the policies of their includer, most do not. In CMake 2.6.3 and above, include() and find_package() by default PUSH and POP an entry on the policy stack around an included script, but provide a NO_POLICY_SCOPE option to disable it. This policy determines whether or not to imply NO_POLICY_SCOPE for compatibility. The OLD behavior for this policy is to imply NO_POLICY_SCOPE for include() and find_package() commands. The NEW behavior for this policy is to allow the commands to do their default cmake_policy PUSH and POP. .sp This policy was introduced in CMake version 2.6.3. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0010 .sp Bad variable reference syntax is an error. .sp In CMake 2.6.2 and below, incorrect variable reference syntax such as a missing close\-brace ("${FOO") was reported but did not stop processing of CMake code. This policy determines whether a bad variable reference is an error. The OLD behavior for this policy is to warn about the error, leave the string untouched, and continue. The NEW behavior for this policy is to report an error. .sp If \fBCMP0053\fP is set to \fBNEW\fP, this policy has no effect and is treated as always being \fBNEW\fP\&. .sp This policy was introduced in CMake version 2.6.3. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0009 .sp FILE GLOB_RECURSE calls should not follow symlinks by default. .sp In CMake 2.6.1 and below, FILE GLOB_RECURSE calls would follow through symlinks, sometimes coming up with unexpectedly large result sets because of symlinks to top level directories that contain hundreds of thousands of files. .sp This policy determines whether or not to follow symlinks encountered during a FILE GLOB_RECURSE call. The OLD behavior for this policy is to follow the symlinks. The NEW behavior for this policy is not to follow the symlinks by default, but only if FOLLOW_SYMLINKS is given as an additional argument to the FILE command. .sp This policy was introduced in CMake version 2.6.2. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0008 .sp Libraries linked by full\-path must have a valid library file name. .sp In CMake 2.4 and below it is possible to write code like .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_libraries(myexe /full/path/to/somelib) .ft P .fi .UNINDENT .UNINDENT .sp where "somelib" is supposed to be a valid library file name such as "libsomelib.a" or "somelib.lib". For Makefile generators this produces an error at build time because the dependency on the full path cannot be found. For VS IDE and Xcode generators this used to work by accident because CMake would always split off the library directory and ask the linker to search for the library by name (\-lsomelib or somelib.lib). Despite the failure with Makefiles, some projects have code like this and build only with VS and/or Xcode. This version of CMake prefers to pass the full path directly to the native build tool, which will fail in this case because it does not name a valid library file. .sp This policy determines what to do with full paths that do not appear to name a valid library file. The OLD behavior for this policy is to split the library name from the path and ask the linker to search for it. The NEW behavior for this policy is to trust the given path and pass it directly to the native build tool unchanged. .sp This policy was introduced in CMake version 2.6.1. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0007 .sp list command no longer ignores empty elements. .sp This policy determines whether the list command will ignore empty elements in the list. CMake 2.4 and below list commands ignored all empty elements in the list. For example, a;b;;c would have length 3 and not 4. The OLD behavior for this policy is to ignore empty list elements. The NEW behavior for this policy is to correctly count empty elements in a list. .sp This policy was introduced in CMake version 2.6.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0006 .sp Installing MACOSX_BUNDLE targets requires a BUNDLE DESTINATION. .sp This policy determines whether the install(TARGETS) command must be given a BUNDLE DESTINATION when asked to install a target with the MACOSX_BUNDLE property set. CMake 2.4 and below did not distinguish application bundles from normal executables when installing targets. CMake 2.6 provides a BUNDLE option to the install(TARGETS) command that specifies rules specific to application bundles on the Mac. Projects should use this option when installing a target with the MACOSX_BUNDLE property set. .sp The OLD behavior for this policy is to fall back to the RUNTIME DESTINATION if a BUNDLE DESTINATION is not given. The NEW behavior for this policy is to produce an error if a bundle target is installed without a BUNDLE DESTINATION. .sp This policy was introduced in CMake version 2.6.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0005 .sp Preprocessor definition values are now escaped automatically. .sp This policy determines whether or not CMake should generate escaped preprocessor definition values added via add_definitions. CMake versions 2.4 and below assumed that only trivial values would be given for macros in add_definitions calls. It did not attempt to escape non\-trivial values such as string literals in generated build rules. CMake versions 2.6 and above support escaping of most values, but cannot assume the user has not added escapes already in an attempt to work around limitations in earlier versions. .sp The OLD behavior for this policy is to place definition values given to add_definitions directly in the generated build rules without attempting to escape anything. The NEW behavior for this policy is to generate correct escapes for all native build tools automatically. See documentation of the COMPILE_DEFINITIONS target property for limitations of the escaping implementation. .sp This policy was introduced in CMake version 2.6.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0004 .sp Libraries linked may not have leading or trailing whitespace. .sp CMake versions 2.4 and below silently removed leading and trailing whitespace from libraries linked with code like .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_libraries(myexe " A ") .ft P .fi .UNINDENT .UNINDENT .sp This could lead to subtle errors in user projects. .sp The OLD behavior for this policy is to silently remove leading and trailing whitespace. The NEW behavior for this policy is to diagnose the existence of such whitespace as an error. The setting for this policy used when checking the library names is that in effect when the target is created by an add_executable or add_library command. .sp This policy was introduced in CMake version 2.6.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0003 .sp Libraries linked via full path no longer produce linker search paths. .sp This policy affects how libraries whose full paths are NOT known are found at link time, but was created due to a change in how CMake deals with libraries whose full paths are known. Consider the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_libraries(myexe /path/to/libA.so) .ft P .fi .UNINDENT .UNINDENT .sp CMake 2.4 and below implemented linking to libraries whose full paths are known by splitting them on the link line into separate components consisting of the linker search path and the library name. The example code might have produced something like .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C \&... \-L/path/to \-lA ... .ft P .fi .UNINDENT .UNINDENT .sp in order to link to library A. An analysis was performed to order multiple link directories such that the linker would find library A in the desired location, but there are cases in which this does not work. CMake versions 2.6 and above use the more reliable approach of passing the full path to libraries directly to the linker in most cases. The example code now produces something like .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C \&... /path/to/libA.so .... .ft P .fi .UNINDENT .UNINDENT .sp Unfortunately this change can break code like .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C target_link_libraries(myexe /path/to/libA.so B) .ft P .fi .UNINDENT .UNINDENT .sp where "B" is meant to find "/path/to/libB.so". This code is wrong because the user is asking the linker to find library B but has not provided a linker search path (which may be added with the link_directories command). However, with the old linking implementation the code would work accidentally because the linker search path added for library A allowed library B to be found. .sp In order to support projects depending on linker search paths added by linking to libraries with known full paths, the OLD behavior for this policy will add the linker search paths even though they are not needed for their own libraries. When this policy is set to OLD, CMake will produce a link line such as .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C \&... \-L/path/to /path/to/libA.so \-lB ... .ft P .fi .UNINDENT .UNINDENT .sp which will allow library B to be found as it was previously. When this policy is set to NEW, CMake will produce a link line such as .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C \&... /path/to/libA.so \-lB ... .ft P .fi .UNINDENT .UNINDENT .sp which more accurately matches what the project specified. .sp The setting for this policy used when generating the link line is that in effect when the target is created by an add_executable or add_library command. For the example described above, the code .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_policy(SET CMP0003 OLD) # or cmake_policy(VERSION 2.4) add_executable(myexe myexe.c) target_link_libraries(myexe /path/to/libA.so B) .ft P .fi .UNINDENT .UNINDENT .sp will work and suppress the warning for this policy. It may also be updated to work with the corrected linking approach: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_policy(SET CMP0003 NEW) # or cmake_policy(VERSION 2.6) link_directories(/path/to) # needed to find library B add_executable(myexe myexe.c) target_link_libraries(myexe /path/to/libA.so B) .ft P .fi .UNINDENT .UNINDENT .sp Even better, library B may be specified with a full path: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C add_executable(myexe myexe.c) target_link_libraries(myexe /path/to/libA.so /path/to/libB.so) .ft P .fi .UNINDENT .UNINDENT .sp When all items on the link line have known paths CMake does not check this policy so it has no effect. .sp Note that the warning for this policy will be issued for at most one target. This avoids flooding users with messages for every target when setting the policy once will probably fix all targets. .sp This policy was introduced in CMake version 2.6.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0002 .sp Logical target names must be globally unique. .sp Targets names created with add_executable, add_library, or add_custom_target are logical build target names. Logical target names must be globally unique because: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C \- Unique names may be referenced unambiguously both in CMake code and on make tool command lines. \- Logical names are used by Xcode and VS IDE generators to produce meaningful project names for the targets. .ft P .fi .UNINDENT .UNINDENT .sp The logical name of executable and library targets does not have to correspond to the physical file names built. Consider using the OUTPUT_NAME target property to create two targets with the same physical name while keeping logical names distinct. Custom targets must simply have globally unique names (unless one uses the global property ALLOW_DUPLICATE_CUSTOM_TARGETS with a Makefiles generator). .sp This policy was introduced in CMake version 2.6.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0001 .sp CMAKE_BACKWARDS_COMPATIBILITY should no longer be used. .sp The OLD behavior is to check CMAKE_BACKWARDS_COMPATIBILITY and present it to the user. The NEW behavior is to ignore CMAKE_BACKWARDS_COMPATIBILITY completely. .sp In CMake 2.4 and below the variable CMAKE_BACKWARDS_COMPATIBILITY was used to request compatibility with earlier versions of CMake. In CMake 2.6 and above all compatibility issues are handled by policies and the cmake_policy command. However, CMake must still check CMAKE_BACKWARDS_COMPATIBILITY for projects written for CMake 2.4 and below. .sp This policy was introduced in CMake version 2.6.0. CMake version 3.13.2 warns when the policy is not set and uses OLD behavior. Use the cmake_policy command to set it to OLD or NEW explicitly. .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 CMP0000 .sp A minimum required CMake version must be specified. .sp CMake requires that projects specify the version of CMake to which they have been written. This policy has been put in place so users trying to build the project may be told when they need to update their CMake. Specifying a version also helps the project build with CMake versions newer than that specified. Use the cmake_minimum_required command at the top of your main CMakeLists.txt file: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C cmake_minimum_required(VERSION .) .ft P .fi .UNINDENT .UNINDENT .sp where "." is the version of CMake you want to support (such as "2.6"). The command will ensure that at least the given version of CMake is running and help newer versions be compatible with the project. See documentation of cmake_minimum_required for details. .sp Note that the command invocation must appear in the CMakeLists.txt file itself; a call in an included file is not sufficient. However, the cmake_policy command may be called to set policy CMP0000 to OLD or NEW behavior explicitly. The OLD behavior is to silently ignore the missing invocation. The NEW behavior is to issue an error instead of a warning. An included file may set CMP0000 explicitly to affect how this policy is enforced for the main CMakeLists.txt file. .sp This policy was introduced in CMake version 2.6.0. .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 .SH COPYRIGHT 2000-2019 Kitware, Inc. and Contributors .\" Generated by docutils manpage writer. .