summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CMP0129/CXX.cmake
diff options
context:
space:
mode:
authormakise-homura <akemi_homura@kurisa.ch>2021-10-19 18:43:45 (GMT)
committermakise-homura <akemi_homura@kurisa.ch>2021-10-21 14:24:22 (GMT)
commit3958ed878f2365fd1af004341d45dac7f4e94afb (patch)
tree0192b68ccf8fc248efadb1bf91deddc1927bf434 /Tests/RunCMake/CMP0129/CXX.cmake
parent52ea22ca65d86627e9ab571f2a87d4a952a7d85e (diff)
downloadCMake-3958ed878f2365fd1af004341d45dac7f4e94afb.zip
CMake-3958ed878f2365fd1af004341d45dac7f4e94afb.tar.gz
CMake-3958ed878f2365fd1af004341d45dac7f4e94afb.tar.bz2
LCC: Add policy CMP0129 regarding interpreting LCC as GNU
Due to MCST LCC compiler identification is now changed to LCC, there should be a way for old projects to still identify it as GNU, as it was before. This commits adds the policy: CMP0129: Compiler id for MCST LCC compilers is now LCC, not GNU. This policy controls such a behavior. OLD behaivior is to treat LCC as GNU, NEW is to treat is as LCC.
Diffstat (limited to 'Tests/RunCMake/CMP0129/CXX.cmake')
-rw-r--r--Tests/RunCMake/CMP0129/CXX.cmake8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/RunCMake/CMP0129/CXX.cmake b/Tests/RunCMake/CMP0129/CXX.cmake
new file mode 100644
index 0000000..ffb81b8
--- /dev/null
+++ b/Tests/RunCMake/CMP0129/CXX.cmake
@@ -0,0 +1,8 @@
+if(SET_CMP0129)
+ cmake_policy(SET CMP0129 ${SET_CMP0129})
+endif()
+
+enable_language(CXX)
+set(CMAKE_VERBOSE_MAKEFILE TRUE)
+include(CompareCompilerVersion.cmake)
+compare_compiler_version(CXX)