We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e28be5d commit eab3c6dCopy full SHA for eab3c6d
cpp/autobuilder/Semmle.Autobuild.Cpp.Tests/BuildScripts.cs
@@ -131,6 +131,14 @@ IEnumerable<string> IBuildActions.EnumerateDirectories(string dir)
131
132
bool IBuildActions.IsWindows() => IsWindows;
133
134
+ public bool IsMacOs { get; set; }
135
+
136
+ bool IBuildActions.IsMacOs() => IsMacOs;
137
138
+ public bool IsArm { get; set; }
139
140
+ bool IBuildActions.IsArm() => IsArm;
141
142
string IBuildActions.PathCombine(params string[] parts)
143
{
144
return string.Join(IsWindows ? '\\' : '/', parts.Where(p => !string.IsNullOrWhiteSpace(p)));
0 commit comments