From 57e48f16f2c3b73fb27057267c8092a41005bb75 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 9 Jan 2019 14:30:10 -0500 Subject: VS: Add Visual Studio 16 2019 generator Add this generator *without* support for specifying the target architecture in the generator name. cmake-gui will be taught to provide a field for this, and command-line builds can use -A. Also, teach this generator to select a default target architecture based on the host architecture. Fixes: #18689 Inspired-by: Egor Pugin --- Source/cmGlobalVisualStudioGenerator.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Source/cmGlobalVisualStudioGenerator.h') diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h index d44f5a5072..039191c6cd 100644 --- a/Source/cmGlobalVisualStudioGenerator.h +++ b/Source/cmGlobalVisualStudioGenerator.h @@ -38,7 +38,8 @@ public: VS12 = 120, /* VS13 = 130 was skipped */ VS14 = 140, - VS15 = 150 + VS15 = 150, + VS16 = 160 }; virtual ~cmGlobalVisualStudioGenerator(); -- cgit v1.2.1