From 1135f9024a88c8841298708128051a3f4e0a508e Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sat, 11 Mar 2017 09:28:24 -0500 Subject: [PATCH] Fix error when configuring for csgo SDK build on VS 2017. --- core/AMBuilder | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/AMBuilder b/core/AMBuilder index 5efb3d64..876c554c 100644 --- a/core/AMBuilder +++ b/core/AMBuilder @@ -75,6 +75,8 @@ for sdk_name in SM.sdks: vs_year = '2013' elif msvc_ver == 1900: vs_year = '2015' + elif msvc_ver == 1910: + vs_year = '2017' else: raise Exception('Cannot find libprotobuf for MSVC version "' + str(compiler.version) + '"')