Skip to content

Commit

Permalink
Update Setup-Target.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyvct committed Nov 8, 2022
1 parent 7d27969 commit c35d4c9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions utils.pwsh/Setup-Target.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function Setup-Target {

$script:ConfigData = switch ($script:Target) {
'ARM64' {
return @{
@{
Arch = 'ARM64'
UnixArch = 'aarch64'
CmakeArch = 'ARM64'
Expand All @@ -25,7 +25,7 @@ function Setup-Target {
}
}
'x64' {
return @{
@{
Arch = 'x64'
UnixArch = 'x86_64'
CmakeArch = 'x64'
Expand All @@ -34,7 +34,7 @@ function Setup-Target {
}
}
'x86' {
return @{
@{
Arch = 'x86'
UnixArch = 'x86'
CmakeArch = 'Win32'
Expand All @@ -44,7 +44,6 @@ function Setup-Target {
}
}


Log-Debug "
Architecture : $($script:ConfigData.Arch)
CMake arch : $($script:ConfigData.CmakeArch)
Expand Down

0 comments on commit c35d4c9

Please sign in to comment.