diff --git a/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/ApplePlatformSettings.cs b/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/ApplePlatformSettings.cs index 9f1942146..52953807f 100644 --- a/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/ApplePlatformSettings.cs +++ b/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/ApplePlatformSettings.cs @@ -41,7 +41,7 @@ public static string MacOSSDKPath } private static string s_iphoneOSSDKPath; - public static string IPhoneOSSDkPath + public static string IPhoneOSSDKPath { get { diff --git a/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/iOsPlatform.cs b/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/iOsPlatform.cs index 3cabf5035..de629dcd7 100644 --- a/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/iOsPlatform.cs +++ b/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/iOsPlatform.cs @@ -54,7 +54,7 @@ public override void SelectCompilerOptions(IGenerationContext context) // Sysroot options["SDKRoot"] = "iphoneos"; - cmdLineOptions["SDKRoot"] = $"-isysroot {ApplePlatform.Settings.IPhoneOSSDkPath}"; + cmdLineOptions["SDKRoot"] = $"-isysroot {ApplePlatform.Settings.IPhoneOSSDKPath}"; // Target options["MacOSDeploymentTarget"] = FileGeneratorUtilities.RemoveLineTag; @@ -230,7 +230,7 @@ public override void SelectLinkerOptions(IGenerationContext context) base.SelectLinkerOptions(context); // Sysroot - SelectCustomSysLibRoot(context, ApplePlatform.Settings.IPhoneOSSDkPath); + SelectCustomSysLibRoot(context, ApplePlatform.Settings.IPhoneOSSDKPath); } } }