summaryrefslogtreecommitdiffstats
path: root/Source/cmPolicies.h
diff options
context:
space:
mode:
authorGlen Chung <kuchung@microsoft.com>2022-05-24 19:14:59 (GMT)
committerBrad King <brad.king@kitware.com>2022-05-26 13:06:01 (GMT)
commit5fcadc481e4b60e5dbbacb026b73631b69ca3746 (patch)
tree3c121306587bd873133dfb76e190f61be937f697 /Source/cmPolicies.h
parentbb500723555940a29355a71898b44be196dec2a6 (diff)
downloadCMake-5fcadc481e4b60e5dbbacb026b73631b69ca3746.zip
CMake-5fcadc481e4b60e5dbbacb026b73631b69ca3746.tar.gz
CMake-5fcadc481e4b60e5dbbacb026b73631b69ca3746.tar.bz2
MSVC: Default to -ZI instead of /Zi for x86 and x64
Add a policy for compatibility. For more information, see [1]. [1] https://docs.microsoft.com/en-us/cpp/build/reference/z7-zi-zi-debug-information-format?view=msvc-170 Fixes: #10189
Diffstat (limited to 'Source/cmPolicies.h')
-rw-r--r--Source/cmPolicies.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmPolicies.h b/Source/cmPolicies.h
index c8b037e..f13432b 100644
--- a/Source/cmPolicies.h
+++ b/Source/cmPolicies.h
@@ -414,7 +414,10 @@ class cmMakefile;
24, 0, cmPolicies::WARN) \
SELECT(POLICY, CMP0137, \
"try_compile() passes platform variables in project mode", 3, 24, 0, \
- cmPolicies::WARN)
+ cmPolicies::WARN) \
+ SELECT(POLICY, CMP0138, \
+ "MSVC compilers use -ZI instead of /Zi for x86 and x64 by default.", \
+ 3, 24, 0, cmPolicies::WARN)
#define CM_SELECT_ID(F, A1, A2, A3, A4, A5, A6) F(A1)
#define CM_FOR_EACH_POLICY_ID(POLICY) \