From 63dba625b357ed2a546ab3eacd3a609ad2020473 Mon Sep 17 00:00:00 2001 From: strawmanbobi Date: Mon, 22 Sep 2025 09:41:40 +0800 Subject: [PATCH] added MSVC CMake configs --- decoder/CMakeSettings.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 decoder/CMakeSettings.json diff --git a/decoder/CMakeSettings.json b/decoder/CMakeSettings.json new file mode 100644 index 0000000..5b8aad6 --- /dev/null +++ b/decoder/CMakeSettings.json @@ -0,0 +1,27 @@ +{ + "configurations": [ + { + "name": "x64-Debug", + "generator": "Ninja", + "configurationType": "Debug", + "inheritEnvironments": [ "msvc_x64_x64" ], + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "" + }, + { + "name": "x64-Release", + "generator": "Ninja", + "configurationType": "RelWithDebInfo", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x64_x64" ], + "variables": [] + } + ] +} \ No newline at end of file