Skip to content

Commit

Permalink
Fix vcpkg target triplets.
Browse files Browse the repository at this point in the history
  • Loading branch information
crud89 committed Aug 13, 2024
1 parent 7fc237c commit 55eb38b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"BUILD_SHARED_LIBS": "OFF",
"VCPKG_TARGET_TRIPLET": "x64-windows-clang-static",
"VCPKG_TARGET_TRIPLET": "x64-windows-static",
"VCPKG_MANIFEST_FEATURES": "pix-support",
"LITEFX_BUILD_SUPPORT_DEBUG_MARKERS": "ON"
}
Expand All @@ -251,7 +251,7 @@
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"LITEFX_BUILD_TESTS": "ON",
"VCPKG_TARGET_TRIPLET": "x64-windows-clang-rel",
"VCPKG_TARGET_TRIPLET": "x64-windows-rel",
"VCPKG_MANIFEST_FEATURES": "pix-support",
"LITEFX_BUILD_SUPPORT_DEBUG_MARKERS": "ON"
}
Expand All @@ -268,7 +268,7 @@
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"VCPKG_TARGET_TRIPLET": "x64-windows-clang-rel"
"VCPKG_TARGET_TRIPLET": "x64-windows-rel"
}
},
{
Expand All @@ -284,7 +284,7 @@
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"BUILD_SHARED_LIBS": "OFF",
"VCPKG_TARGET_TRIPLET": "x64-windows-clang-static-rel"
"VCPKG_TARGET_TRIPLET": "x64-windows-static-rel"
}
},
{
Expand Down Expand Up @@ -316,7 +316,7 @@
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"BUILD_SHARED_LIBS": "OFF",
"VCPKG_TARGET_TRIPLET": "x86-windows-clang-static",
"VCPKG_TARGET_TRIPLET": "x86-windows-static",
"LITEFX_BUILD_SUPPORT_DEBUG_MARKERS": "ON"
}
},
Expand All @@ -333,7 +333,7 @@
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"LITEFX_BUILD_TESTS": "ON",
"VCPKG_TARGET_TRIPLET": "x86-windows-clang-rel",
"VCPKG_TARGET_TRIPLET": "x86-windows-rel",
"LITEFX_BUILD_SUPPORT_DEBUG_MARKERS": "ON"
}
},
Expand All @@ -349,7 +349,7 @@
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"VCPKG_TARGET_TRIPLET": "x86-windows-clang-rel"
"VCPKG_TARGET_TRIPLET": "x86-windows-rel"
}
},
{
Expand All @@ -365,7 +365,7 @@
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"BUILD_SHARED_LIBS": "OFF",
"VCPKG_TARGET_TRIPLET": "x86-windows-clang-static-rel"
"VCPKG_TARGET_TRIPLET": "x86-windows-static-rel"
}
}
],
Expand Down

0 comments on commit 55eb38b

Please sign in to comment.