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
This commit is contained in:
Victor Derks 2021-04-24 13:15:18 +02:00
parent b0a628f385
commit 8da597f2f9
No known key found for this signature in database
GPG Key ID: 3CAD1C98620F0A27
2 changed files with 140 additions and 124 deletions

140
CMakePresets.json Normal file
View File

@ -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"
}
}
]
}

View File

@ -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"
}
]
}
]
}