Skip to content

Commit

Permalink
Fix a few problems in the windows-vs-* presets (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSchofield authored Sep 8, 2024
2 parents 9fb8677 + 014a3a5 commit 18a384f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions example/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"displayName": "Configure for 'windows-msvc-x86'",
"binaryDir": "${sourceDir}/__output/${presetName}",
"cacheVariables": {
"CMAKE_SYSTEM_PROCESSOR": "x86"
"CMAKE_SYSTEM_PROCESSOR": "X86"
}
},
{
Expand Down Expand Up @@ -142,24 +142,24 @@
},
{
"name": "windows-vs-x64",
"inherits": "windows",
"inherits": "windows-vs",
"hidden": false,
"binaryDir": "${sourceDir}/__output/${presetName}",
"displayName": "Windows-only configuration",
"displayName": "windows-vs-x64",
"description": "This build is only available on Windows",
"cacheVariables": {
"CMAKE_SYSTEM_PROCESSOR": "AMD64"
"CMAKE_GENERATOR_PLATFORM": "x64,version=10.0.22621.0"
}
},
{
"name": "windows-vs-arm64",
"inherits": "windows",
"inherits": "windows-vs",
"hidden": false,
"binaryDir": "${sourceDir}/__output/${presetName}",
"displayName": "Windows-only configuration",
"displayName": "windows-vs-arm64",
"description": "This build is only available on Windows",
"cacheVariables": {
"CMAKE_SYSTEM_PROCESSOR": "ARM64"
"CMAKE_GENERATOR_PLATFORM": "ARM64,version=10.0.22621.0"
}
}
],
Expand Down

0 comments on commit 18a384f

Please sign in to comment.