-
-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathAssimpLibraryNameContainer.cs
More file actions
31 lines (24 loc) · 949 Bytes
/
AssimpLibraryNameContainer.cs
File metadata and controls
31 lines (24 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Silk.NET.Core.Loader;
namespace Silk.NET.Assimp
{
/// <summary>
/// Contains the library name of Assimp.
/// </summary>
internal class AssimpLibraryNameContainer : SearchPathContainer
{
/// <inheritdoc />
public override string[] Linux => new[] { "libassimp.so.6" };
/// <inheritdoc />
public override string[] MacOS => new[] { "libassimp.6.dylib" };
/// <inheritdoc />
public override string[] Android => new[] { "libassimp.so.6" };
/// <inheritdoc />
public override string[] IOS => new[] { "__Internal" };
/// <inheritdoc />
public override string[] Windows64 => new[] { "Assimp64.dll" };
/// <inheritdoc />
public override string[] Windows86 => new[] { "Assimp32.dll" };
}
}