diff --git a/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs b/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs index 5dfafbde..fac360df 100644 --- a/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs +++ b/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs @@ -133,6 +133,11 @@ public class SenseGloveConnectImpl : ModuleRules case WindowsCompiler.VisualStudio2019: LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "msvc142")); break; +#endif +#if UE_4_17_OR_LATER + case WindowsCompiler.VisualStudio2017: + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "msvc141")); + break; #endif default: Debug.Assert(false, "Unsupported compiler!"); @@ -222,6 +227,11 @@ public class SenseGloveConnectImpl : ModuleRules case WindowsCompiler.VisualStudio2019: LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "msvc142")); break; +#endif +#if UE_4_17_OR_LATER + case WindowsCompiler.VisualStudio2017: + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "msvc141")); + break; #endif default: Debug.Assert(false, "Unsupported compiler!"); diff --git a/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs b/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs index da2e13cf..5fb815f8 100644 --- a/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs +++ b/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs @@ -132,6 +132,11 @@ public class SenseGloveCoreImpl : ModuleRules case WindowsCompiler.VisualStudio2019: LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "msvc142")); break; +#endif +#if UE_4_17_OR_LATER + case WindowsCompiler.VisualStudio2017: + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "msvc141")); + break; #endif default: Debug.Assert(false, "Unsupported compiler!");