Merge remote-tracking branch 'origin/1.12' into 1.12
This commit is contained in:
BIN
Source/Platforms/Linux/Binaries/ThirdParty/x64/libSDL3.a
LFS
vendored
Normal file
BIN
Source/Platforms/Linux/Binaries/ThirdParty/x64/libSDL3.a
LFS
vendored
Normal file
Binary file not shown.
BIN
Source/Platforms/Linux/Binaries/ThirdParty/x64/libbasisu_encoder.a
LFS
vendored
Normal file
BIN
Source/Platforms/Linux/Binaries/ThirdParty/x64/libbasisu_encoder.a
LFS
vendored
Normal file
Binary file not shown.
BIN
Source/Platforms/Linux/Binaries/ThirdParty/x64/libportal.a
LFS
vendored
Normal file
BIN
Source/Platforms/Linux/Binaries/ThirdParty/x64/libportal.a
LFS
vendored
Normal file
Binary file not shown.
0
Source/Platforms/Linux/Binaries/ThirdParty/x64/tint
vendored
Normal file → Executable file
0
Source/Platforms/Linux/Binaries/ThirdParty/x64/tint
vendored
Normal file → Executable file
@@ -17,6 +17,7 @@ public class basis_universal : EngineDepsModule
|
||||
{
|
||||
case TargetPlatform.Windows:
|
||||
case TargetPlatform.Web:
|
||||
case TargetPlatform.Linux:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
|
||||
@@ -25,6 +25,11 @@ namespace Flax.Deps.Dependencies
|
||||
TargetPlatform.Windows,
|
||||
TargetPlatform.Web,
|
||||
};
|
||||
case TargetPlatform.Linux:
|
||||
return new[]
|
||||
{
|
||||
TargetPlatform.Linux,
|
||||
};
|
||||
default:
|
||||
return new TargetPlatform[0];
|
||||
}
|
||||
@@ -45,6 +50,11 @@ namespace Flax.Deps.Dependencies
|
||||
TargetArchitecture.x64,
|
||||
TargetArchitecture.ARM64,
|
||||
};
|
||||
case TargetPlatform.Linux:
|
||||
return new[]
|
||||
{
|
||||
TargetArchitecture.x64,
|
||||
};
|
||||
default:
|
||||
return new TargetArchitecture[0];
|
||||
}
|
||||
@@ -124,6 +134,14 @@ namespace Flax.Deps.Dependencies
|
||||
CopyLib(platform, buildDir, depsFolder, "basisu_encoder");
|
||||
break;
|
||||
}
|
||||
case TargetPlatform.Linux:
|
||||
{
|
||||
cmakeArgs = ".. " + cmakeArgs;
|
||||
RunCmake(buildDir, platform, architecture, cmakeArgs);
|
||||
BuildCmake(buildDir, configuration, options:Utilities.RunOptions.ConsoleLogOutput);
|
||||
CopyLib(platform, buildDir, depsFolder, "basisu_encoder");
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user