From: kunnis Date: Mon, 27 May 2024 23:40:12 +0000 (-0500) Subject: adding in x64 targets to cmake presets (#7574) X-Git-Tag: upstream/0.0.4488~1474 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=0136966dafb452601c23f30395878d5a65ddc559;p=pkg%2Fggml%2Fsources%2Fllama.cpp adding in x64 targets to cmake presets (#7574) --- diff --git a/CMakePresets.json b/CMakePresets.json index ad1af7ec..e2b7a79e 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -1,4 +1,4 @@ -{ +{ "version": 4, "configurePresets": [ { @@ -40,6 +40,10 @@ { "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" ] } ] }