Ver Fonte

adding in x64 targets to cmake presets (#7574)

kunnis há 1 ano atrás
pai
commit
0136966daf
1 ficheiros alterados com 6 adições e 2 exclusões
  1. 6 2
      CMakePresets.json

+ 6 - 2
CMakePresets.json

@@ -1,4 +1,4 @@
-{
+{
   "version": 4,
   "version": 4,
   "configurePresets": [
   "configurePresets": [
     {
     {
@@ -40,6 +40,10 @@
 
 
     { "name": "arm64-windows-msvc-debug"  , "inherits": [ "base", "arm64-windows-msvc",  "debug"   ] },
     { "name": "arm64-windows-msvc-debug"  , "inherits": [ "base", "arm64-windows-msvc",  "debug"   ] },
     { "name": "arm64-windows-msvc-release", "inherits": [ "base", "arm64-windows-msvc",  "release" ] },
     { "name": "arm64-windows-msvc-release", "inherits": [ "base", "arm64-windows-msvc",  "release" ] },
-    { "name": "arm64-windows-msvc+static-release", "inherits": [ "base", "arm64-windows-msvc",  "release", "static" ] }
+    { "name": "arm64-windows-msvc+static-release", "inherits": [ "base", "arm64-windows-msvc",  "release", "static" ] },
+
+    { "name": "x64-windows-msvc-debug"  , "inherits": [ "base", "debug"   ] },
+    { "name": "x64-windows-msvc-release", "inherits": [ "base", "release" ] },
+    { "name": "x64-windows-msvc+static-release", "inherits": [ "base", "release", "static" ] }
   ]
   ]
 }
 }