]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
adding in x64 targets to cmake presets (#7574)
authorkunnis <redacted>
Mon, 27 May 2024 23:40:12 +0000 (18:40 -0500)
committerGitHub <redacted>
Mon, 27 May 2024 23:40:12 +0000 (01:40 +0200)
CMakePresets.json

index ad1af7eccebbdcf9c8c472b3037eb58e73f44158..e2b7a79e371bf8dd5cff743aa798c196f85f8927 100644 (file)
@@ -1,4 +1,4 @@
-{
+{
   "version": 4,
   "configurePresets": [
     {
 
     { "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+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" ] }
   ]
 }