From a89cf6c8dd54532b7c9e3ffd20a4c06a0664efc9 Mon Sep 17 00:00:00 2001 From: Molly <60114762+MolassesLover@users.noreply.github.com> Date: Mon, 9 Aug 2021 09:10:09 +0200 Subject: [PATCH] Added Unix Makefile generators to CMakeSettings.json (#295) --- CMakeSettings.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CMakeSettings.json b/CMakeSettings.json index 684e402e3..3719024a9 100644 --- a/CMakeSettings.json +++ b/CMakeSettings.json @@ -23,6 +23,28 @@ "ctestCommandArgs": "", "inheritEnvironments": [ "msvc_x64_x64" ], "variables": [] + }, + { + "name": "x64-Debug-Makefiles", + "generator": "Unix Makefiles", + "configurationType": "Debug", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "variables": [] + }, + { + "name": "x64-Release-Makefiles", + "generator": "Unix Makefiles", + "configurationType": "Release", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "variables": [] } ] }