From 8da597f2f93af09ad02d39768836083de230d899 Mon Sep 17 00:00:00 2001 From: Victor Derks Date: Sat, 24 Apr 2021 13:15:18 +0200 Subject: [PATCH] Upgrade CMakeSettings.json to CMakePresets.json CMakeSettings.json has been replaced by CMakePresets.json Note: Full support for CMakePresets.json requires CMake 3.20 and Visual Studio 2019 16.10 or Visual Studio Code --- CMakePresets.json | 140 +++++++++++++++++++++++++++++++++++++++++++++ CMakeSettings.json | 124 --------------------------------------- 2 files changed, 140 insertions(+), 124 deletions(-) create mode 100644 CMakePresets.json delete mode 100644 CMakeSettings.json diff --git a/CMakePresets.json b/CMakePresets.json new file mode 100644 index 0000000..5f657b2 --- /dev/null +++ b/CMakePresets.json @@ -0,0 +1,140 @@ +{ + "version": 2, + "cmakeMinimumRequired": { + "major": 3, + "minor": 20, + "patch": 0 + }, + "configurePresets": [ + { + "name": "base", + "description": "Sets generator, build and install directory", + "hidden": true, + "generator": "Ninja", + "binaryDir": "${sourceDir}/bin/build/${presetName}", + "cacheVariables": { + "CMAKE_INSTALL_PREFIX": "${sourceDir}/bin/install/${presetName}" + } + }, + { + "name": "windows-base", + "description": "Sets C++ compiler and hostOS", + "hidden": true, + "inherits": [ "base" ], + "architecture": { + "value": "x86", + "strategy": "external" + }, + "cacheVariables": { + "CMAKE_CXX_COMPILER": "cl" + }, + "vendor": { + "microsoft.com/VisualStudioSettings/CMake/1.0": { + "hostOS": [ "Windows" ] + } + } + }, + { + "name": "x86-windows-debug", + "description": "Sets x86 arch, build type", + "inherits": [ "windows-base" ], + "architecture": { + "value": "x86", + "strategy": "external" + }, + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug" + } + }, + { + "name": "x86-windows-release", + "description": "Sets x86 arch, build type", + "inherits": [ "windows-base" ], + "architecture": { + "value": "x86", + "strategy": "external" + }, + "cacheVariables": { + "CMAKE_BUILD_TYPE": "RelWithDebInfo" + } + }, + { + "name": "x64-windows-debug", + "description": "Sets x64 arch, build type", + "inherits": [ "windows-base" ], + "architecture": { + "value": "x64", + "strategy": "external" + }, + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug" + } + }, + { + "name": "x64-windows-release", + "description": "Sets x64 arch, build type", + "inherits": [ "windows-base" ], + "architecture": { + "value": "x64", + "strategy": "external" + }, + "cacheVariables": { + "CMAKE_BUILD_TYPE": "RelWithDebInfo" + } + }, + { + "name": "arm64-windows-debug", + "description": "Sets arm64 arch", + "inherits": "windows-base", + "architecture": { + "value": "arm64", + "strategy": "external" + }, + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug" + } + }, + { + "name": "arm64-windows-release", + "description": "Sets arm64 arch", + "inherits": "windows-base", + "architecture": { + "value": "arm64", + "strategy": "external" + }, + "cacheVariables": { + "CMAKE_BUILD_TYPE": "RelWithDebInfo" + } + }, + { + "name": "linux-base", + "description": "Sets compilers, build type", + "inherits": "base", + "vendor": { + "microsoft.com/VisualStudioSettings/CMake/1.0": { + "hostOS": [ "Linux" ] + } + } + }, + { + "name": "linux-debug", + "inherits": "linux-base", + "architecture": { + "strategy": "external" + }, + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug" + } + }, + { + "name": "linux-release", + "inherits": "linux-base", + "architecture": { + "strategy": "external" + }, + "cacheVariables": { + "CMAKE_BUILD_TYPE": "RelWithDebInfo" + } + } + ] +} \ No newline at end of file diff --git a/CMakeSettings.json b/CMakeSettings.json deleted file mode 100644 index ce264bf..0000000 --- a/CMakeSettings.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "configurations": [ - { - "name": "x86-Debug", - "generator": "Ninja", - "configurationType": "Debug", - "inheritEnvironments": [ "msvc_x86" ], - "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", - "installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}", - "cmakeCommandArgs": "-DBUILD_SHARED_LIBS=YES", - "buildCommandArgs": "-v", - "ctestCommandArgs": "", - "variables": [ - { - "name": "CHARLS_THREAT_WARNINGS_AS_ERRORS", - "value": "On", - "type": "STRING" - }, - { - "name": "CHARLS_PEDANTIC_WARNINGS", - "value": "On", - "type": "STRING" - }, - { - "name": "BUILD_SHARED_LIBS", - "value": "YES", - "type": "UNINITIALIZED" - } - ] - }, - { - "name": "x86-Release", - "generator": "Ninja", - "configurationType": "RelWithDebInfo", - "inheritEnvironments": [ "msvc_x86" ], - "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", - "installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}", - "cmakeCommandArgs": "-DBUILD_SHARED_LIBS=YES", - "buildCommandArgs": "-v", - "ctestCommandArgs": "", - "variables": [ - { - "name": "CHARLS_THREAT_WARNINGS_AS_ERRORS", - "value": "On", - "type": "STRING" - }, - { - "name": "CHARLS_PEDANTIC_WARNINGS", - "value": "On", - "type": "STRING" - } - ] - }, - { - "name": "x64-Debug", - "generator": "Ninja", - "configurationType": "Debug", - "inheritEnvironments": [ "msvc_x64_x64" ], - "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", - "installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}", - "cmakeCommandArgs": "-DBUILD_SHARED_LIBS=YES", - "buildCommandArgs": "-v", - "ctestCommandArgs": "", - "variables": [ - { - "name": "CHARLS_THREAT_WARNINGS_AS_ERRORS", - "value": "On", - "type": "STRING" - }, - { - "name": "CHARLS_PEDANTIC_WARNINGS", - "value": "On", - "type": "STRING" - } - ] - }, - { - "name": "x64-Release", - "generator": "Ninja", - "configurationType": "RelWithDebInfo", - "inheritEnvironments": [ "msvc_x64_x64" ], - "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", - "installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}", - "cmakeCommandArgs": "-DBUILD_SHARED_LIBS=YES", - "buildCommandArgs": "-v", - "ctestCommandArgs": "", - "variables": [ - { - "name": "CHARLS_THREAT_WARNINGS_AS_ERRORS", - "value": "On", - "type": "STRING" - }, - { - "name": "CHARLS_PEDANTIC_WARNINGS", - "value": "On", - "type": "STRING" - } - ] - }, - { - "name": "ARM64-Release", - "generator": "Ninja", - "configurationType": "RelWithDebInfo", - "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", - "installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}", - "cmakeCommandArgs": "-DBUILD_SHARED_LIBS=YES", - "buildCommandArgs": "-v", - "ctestCommandArgs": "", - "inheritEnvironments": [ "msvc_arm64_x64" ], - "variables": [ - { - "name": "CHARLS_THREAT_WARNINGS_AS_ERRORS", - "value": "On", - "type": "STRING" - }, - { - "name": "CHARLS_PEDANTIC_WARNINGS", - "value": "On", - "type": "STRING" - } - ] - } - ] -} \ No newline at end of file