Fix link files usage to prevent issues with git changes status

This commit is contained in:
Wojtek Figat
2021-03-12 09:30:31 +01:00
parent 544a043c56
commit c18e5f522a
11 changed files with 24 additions and 13 deletions

View File

@@ -36,8 +36,6 @@ public class assimp : DepsModule
break;
case TargetPlatform.Linux:
options.DependencyFiles.Add(Path.Combine(depsRoot, "libassimp.so"));
options.DependencyFiles.Add(Path.Combine(depsRoot, "libassimp.so.4"));
options.DependencyFiles.Add(Path.Combine(depsRoot, "libassimp.so.4.1.0"));
options.Libraries.Add(Path.Combine(depsRoot, "libassimp.so"));
break;
default: throw new InvalidPlatformException(options.Platform.Target);