mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
19 lines
430 B
C#
19 lines
430 B
C#
namespace Cosmos.TestRunner.Core
|
|
{
|
|
public class RunConfiguration
|
|
{
|
|
public bool IsELF { get; }
|
|
public RunTargetEnum RunTarget { get; }
|
|
|
|
public RunConfiguration(bool isElf, RunTargetEnum runTarget)
|
|
{
|
|
IsELF = isElf;
|
|
RunTarget = runTarget;
|
|
|
|
if (runTarget == RunTargetEnum.Qemu)
|
|
{
|
|
IsELF = false;
|
|
}
|
|
}
|
|
}
|
|
}
|