diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-26 14:59:55 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-01-08 15:41:34 (GMT) |
commit | 6aabb6a62b679f64e278087fc671cd33a35bf871 (patch) | |
tree | abf9f40e80fd8577e3cdda4fcd8a8cfd0b6b2037 /Help | |
parent | 5bb53f6b731228e4592066329e8992987289a986 (diff) | |
download | CMake-6aabb6a62b679f64e278087fc671cd33a35bf871.zip CMake-6aabb6a62b679f64e278087fc671cd33a35bf871.tar.gz CMake-6aabb6a62b679f64e278087fc671cd33a35bf871.tar.bz2 |
Genex: Use case-sensitive comparison for COMPILER_ID.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-policies.7.rst | 1 | ||||
-rw-r--r-- | Help/policy/CMP0044.rst | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/Help/manual/cmake-policies.7.rst b/Help/manual/cmake-policies.7.rst index 2181f88..e9c31a7 100644 --- a/Help/manual/cmake-policies.7.rst +++ b/Help/manual/cmake-policies.7.rst @@ -93,3 +93,4 @@ All Policies /policy/CMP0041 /policy/CMP0042 /policy/CMP0043 + /policy/CMP0044 diff --git a/Help/policy/CMP0044.rst b/Help/policy/CMP0044.rst new file mode 100644 index 0000000..edbadf5 --- /dev/null +++ b/Help/policy/CMP0044.rst @@ -0,0 +1,19 @@ +CMP0044 +------- + +Case sensitive ``<LANG>_COMPILER_ID`` generator expressions + +CMake 2.8.12 introduced the ``<LANG>_COMPILER_ID`` +:manual:`generator expressions <cmake-generator-expressions(7)>` to allow +comparison of the :variable:`CMAKE_<LANG>_COMPILER_ID` with a test value. The +possible valid values are lowercase, but the comparison with the test value +was performed case-insensitively. + +The OLD behavior for this policy is to perform a case-insensitive comparison +with the value in the ``<LANG>_COMPILER_ID`` expression. The NEW behavior +for this policy is to perform a case-sensitive comparison with the value in +the ``<LANG>_COMPILER_ID`` expression. + +This policy was introduced in CMake version 3.0.0. CMake version +|release| warns when the policy is not set and uses OLD behavior. Use +the cmake_policy command to set it to OLD or NEW explicitly. |