101 lines
3.6 KiB
C#
101 lines
3.6 KiB
C#
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
|
|
namespace Flax.Build.Platforms
|
|
{
|
|
/// <summary>
|
|
/// The Android NDK.
|
|
/// </summary>
|
|
/// <seealso cref="Sdk" />
|
|
public sealed class AndroidNdk : Sdk
|
|
{
|
|
/// <summary>
|
|
/// The singleton instance.
|
|
/// </summary>
|
|
public static readonly AndroidNdk Instance = new AndroidNdk();
|
|
|
|
/// <inheritdoc />
|
|
public override TargetPlatform[] Platforms => new[]
|
|
{
|
|
TargetPlatform.Windows,
|
|
TargetPlatform.Linux,
|
|
};
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="AndroidNdk"/> class.
|
|
/// </summary>
|
|
public AndroidNdk()
|
|
{
|
|
if (!Platforms.Contains(Platform.BuildTargetPlatform))
|
|
return;
|
|
|
|
// Find Android NDK folder path
|
|
var sdkPath = Environment.GetEnvironmentVariable("ANDROID_NDK");
|
|
if (string.IsNullOrEmpty(sdkPath))
|
|
{
|
|
// Look for ndk installed side-by-side with an sdk
|
|
if (AndroidSdk.Instance.IsValid && Directory.Exists(Path.Combine(AndroidSdk.Instance.RootPath, "ndk")))
|
|
{
|
|
var subdirs = Directory.GetDirectories(Path.Combine(AndroidSdk.Instance.RootPath, "ndk"));
|
|
if (subdirs.Length != 0)
|
|
{
|
|
Array.Sort(subdirs, (a, b) =>
|
|
{
|
|
Version va, vb;
|
|
if (Version.TryParse(a, out va))
|
|
{
|
|
if (Version.TryParse(b, out vb))
|
|
return va.CompareTo(vb);
|
|
return 1;
|
|
}
|
|
if (Version.TryParse(b, out vb))
|
|
return -1;
|
|
return 0;
|
|
});
|
|
sdkPath = subdirs.Last();
|
|
}
|
|
}
|
|
}
|
|
else if (!Directory.Exists(sdkPath))
|
|
{
|
|
Log.Warning(string.Format("Specified Android NDK folder in ANDROID_NDK env variable doesn't exist ({0})", sdkPath));
|
|
}
|
|
if (!string.IsNullOrEmpty(sdkPath) && Directory.Exists(sdkPath))
|
|
{
|
|
var sourceProperties = Path.Combine(sdkPath, "source.properties");
|
|
if (File.Exists(sourceProperties))
|
|
{
|
|
var lines = File.ReadAllLines(sourceProperties);
|
|
if (lines.Length > 1)
|
|
{
|
|
var ver = lines[1].Substring(lines[1].IndexOf(" = ", StringComparison.Ordinal) + 2);
|
|
if (Version.TryParse(ver, out var v))
|
|
{
|
|
Version = v;
|
|
IsValid = true;
|
|
}
|
|
}
|
|
}
|
|
else if (Version.TryParse(Path.GetFileName(sdkPath), out var v))
|
|
{
|
|
Version = v;
|
|
IsValid = true;
|
|
}
|
|
else
|
|
{
|
|
Log.Warning(string.Format("Failed to detect Android NDK version ({0})", sdkPath));
|
|
}
|
|
}
|
|
if (IsValid)
|
|
{
|
|
RootPath = sdkPath;
|
|
IsValid = true;
|
|
Log.Info(string.Format("Found Android NDK {1} at {0}", RootPath, Version));
|
|
}
|
|
}
|
|
}
|
|
}
|