From 1911e04bd81984923c4b7c255dd848a041b176fd Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Sun, 20 Mar 2022 22:04:56 +0500 Subject: [PATCH] draft CMakeSettings.json --- CMakeSettings.json | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 CMakeSettings.json diff --git a/CMakeSettings.json b/CMakeSettings.json new file mode 100644 index 00000000..70795b7a --- /dev/null +++ b/CMakeSettings.json @@ -0,0 +1,42 @@ +{ + "configurations": [ + { + "name": "x64-windows-static-md", + "generator": "Ninja", + "configurationType": "RelWithDebInfo", + "inheritEnvironments": [ "clang_cl_x64" ], + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "cmakeToolchain": "C:/vcpkg/scripts/buildsystems/vcpkg.cmake", + "variables": [ + { + "name": "VCPKG_TARGET_TRIPLET", + "value": "x64-windows-static-md", + "type": "STRING" + } + ] + }, + { + "name": "x86-windows-static-md", + "generator": "Ninja", + "configurationType": "RelWithDebInfo", + "inheritEnvironments": [ "clang_cl_x86" ], + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "cmakeToolchain": "C:/vcpkg/scripts/buildsystems/vcpkg.cmake", + "variables": [ + { + "name": "VCPKG_TARGET_TRIPLET", + "value": "x86-windows-static-md", + "type": "STRING" + } + ] + } + ] +} \ No newline at end of file