mirror of
https://github.com/team-charls/charls
synced 2025-03-28 21:03:13 +00:00
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:
parent
b0a628f385
commit
8da597f2f9
140
CMakePresets.json
Normal file
140
CMakePresets.json
Normal 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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user