Skip to content

Commit 266259d

Browse files
authored
Remove the old v5 assimp binaries and update the bindings to consistently use the v6 version (#2558)
1 parent f91291d commit 266259d

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

generator.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,11 +1059,11 @@
10591059
"namespace": "Silk.NET.Assimp",
10601060
"extensionsNamespace": "Silk.NET.Assimp.Extensions",
10611061
"nameContainer": {
1062-
"linux-x64": "libassimp.so.5",
1062+
"linux-x64": "libassimp.so.6",
10631063
"win-x64": "Assimp64.dll",
10641064
"win-x86": "Assimp32.dll",
1065-
"osx-x64": "libassimp.5.dylib",
1066-
"android": "libassimp.so.5",
1065+
"osx-x64": "libassimp.6.dylib",
1066+
"android": "libassimp.so.6",
10671067
"iOS": "__Internal",
10681068
"className": "AssimpLibraryNameContainer"
10691069
},

src/Assimp/Silk.NET.Assimp/AssimpLibraryNameContainer.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ namespace Silk.NET.Assimp
1111
internal class AssimpLibraryNameContainer : SearchPathContainer
1212
{
1313
/// <inheritdoc />
14-
public override string[] Linux => new[] { "libassimp.so.5" };
14+
public override string[] Linux => new[] { "libassimp.so.6" };
1515

1616
/// <inheritdoc />
17-
public override string[] MacOS => new[] { "libassimp.5.dylib" };
17+
public override string[] MacOS => new[] { "libassimp.6.dylib" };
1818

1919
/// <inheritdoc />
20-
public override string[] Android => new[] { "libassimp.so.5" };
20+
public override string[] Android => new[] { "libassimp.so.6" };
2121

2222
/// <inheritdoc />
2323
public override string[] IOS => new[] { "__Internal" };
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)