1CMP0044 2------- 3 4Case sensitive ``<LANG>_COMPILER_ID`` generator expressions 5 6CMake 2.8.12 introduced the ``<LANG>_COMPILER_ID`` 7:manual:`generator expressions <cmake-generator-expressions(7)>` to allow 8comparison of the :variable:`CMAKE_<LANG>_COMPILER_ID` with a test value. The 9possible valid values are lowercase, but the comparison with the test value 10was performed case-insensitively. 11 12The ``OLD`` behavior for this policy is to perform a case-insensitive comparison 13with the value in the ``<LANG>_COMPILER_ID`` expression. The ``NEW`` behavior 14for this policy is to perform a case-sensitive comparison with the value in 15the ``<LANG>_COMPILER_ID`` expression. 16 17This policy was introduced in CMake version 3.0. CMake version 18|release| warns when the policy is not set and uses ``OLD`` behavior. Use 19the :command:`cmake_policy` command to set it to ``OLD`` or ``NEW`` explicitly. 20 21.. include:: DEPRECATED.txt 22