Skip to content

Commit

Permalink
Merge branch 'embarrassing_lower_case_k' into 'main'
Browse files Browse the repository at this point in the history
ApplePlatform: Fix very embarrassing lower case k

See merge request Sharpmake/sharpmake!556
  • Loading branch information
jspelletier committed Sep 20, 2024
2 parents e7ef130 + 7a381fb commit 6ec93c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static string MacOSSDKPath
}

private static string s_iphoneOSSDKPath;
public static string IPhoneOSSDkPath
public static string IPhoneOSSDKPath
{
get
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -230,7 +230,7 @@ public override void SelectLinkerOptions(IGenerationContext context)
base.SelectLinkerOptions(context);

// Sysroot
SelectCustomSysLibRoot(context, ApplePlatform.Settings.IPhoneOSSDkPath);
SelectCustomSysLibRoot(context, ApplePlatform.Settings.IPhoneOSSDKPath);
}
}
}
Expand Down

0 comments on commit 6ec93c2

Please sign in to comment.