azure-sdk-for-cpp/CMakePresets.json

414 строки
12 KiB
JSON

{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 13,
"patch": 0
},
"configurePresets": [
{
"name": "windows-default",
"displayName": "Windows",
"description": "Sets Ninja generator, and compilers. Configures vcpkg in manifest mode.",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"hidden": true,
"cacheVariables": {
"VCPKG_MANIFEST_MODE": true
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ]
}
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "x64-static",
"displayName": "Windows x64 Static",
"description": "Windows Default, x64 architecture, static CRT.",
"inherits": "windows-default",
"hidden": true,
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-windows-static",
"MSVC_USE_STATIC_CRT": true
},
"architecture": {
"value": "x64",
"strategy": "external"
}
},
{
"name": "x86-static",
"displayName": "Windows x86 Static",
"description": "Windows Default, x86 architecture.",
"inherits": "windows-default",
"hidden": true,
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x86-windows-static",
"MSVC_USE_STATIC_CRT": true
},
"architecture": {
"value": "x86",
"strategy": "external"
}
},
{
"name": "x64",
"displayName": "Windows x64",
"description": "x64 architecture.",
"inherits": "windows-default",
"hidden": true,
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-windows",
"BUILD_SHARED_LIBS": true
},
"architecture": {
"value": "x64",
"strategy": "external"
}
},
{
"name": "x86",
"displayName": "Windows x86",
"description": "Ninja Generator, x86 architecture.",
"inherits": "windows-default",
"hidden": true,
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x86-windows",
"BUILD_SHARED_LIBS": true
},
"architecture": {
"value": "x86",
"strategy": "external"
}
},
{
"name": "x64-debug",
"displayName": "x64 Debug",
"description": "Windows x64 Debug",
"inherits": "x64",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "x64-release",
"displayName": "x64 Release",
"description": "Windows x64 Release",
"inherits": "x64",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "x86-debug",
"displayName": "x86 Debug",
"description": "Windows x86 Debug",
"inherits": "x86",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "x86-release",
"displayName": "x86 Release",
"description": "Windows x86 Release",
"inherits": "x86",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "x64-static-debug",
"displayName": "Windows x64 Debug",
"description": "Windows x64 Debug",
"inherits": "x64-static",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "x64-static-release",
"displayName": "Windows x64 Release, static",
"description": "Windows x64 Release, static",
"inherits": "x64-static",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "x86-static-debug",
"displayName": "Windows x86 Debug, static",
"description": "Windows x86 Debug, static",
"inherits": "x86-static",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "x86-static-release",
"displayName": "Windows x86 Release, static",
"description": "Windows x86 Release, static",
"inherits": "x86-static",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "x86-static-debug-tests",
"displayName": "x86 Debug With Tests, static",
"description": "Windows x86 Debug build with Tests configured",
"inherits": "x86-static-debug",
"cacheVariables": {
"BUILD_TESTING": true,
"ENABLE_PROXY_TESTS": false
}
},
{
"name": "x86-static-release-tests",
"displayName": "x86 Release With Tests, static, libcurl",
"description": "Windows x86 Release build with Tests configured",
"inherits": "x86-static-release",
"cacheVariables": {
"BUILD_TESTING": true,
"ENABLE_PROXY_TESTS": false,
"BUILD_SAMPLES": true,
"BUILD_PERFORMANCE_TESTS": true,
"RUN_LONG_UNIT_TESTS": true,
"BUILD_TRANSPORT_CURL": true
}
},
{
"name": "x64-debug-tests",
"displayName": "x64 Debug With Tests, winhttp+curl",
"description": "Windows x64 Debug build with Tests configured",
"inherits": "x64-debug",
"cacheVariables": {
"BUILD_TESTING": true,
"ENABLE_PROXY_TESTS": false,
"BUILD_SAMPLES": true,
"BUILD_PERFORMANCE_TESTS": true,
"BUILD_TRANSPORT_WINHTTP": true,
"BUILD_TRANSPORT_CURL": true
}
},
{
"name": "x64-static-debug-tests",
"displayName": "x64 Debug With Tests, static",
"description": "Windows x64 Debug build with Tests configured",
"inherits": "x64-static-debug",
"cacheVariables": {
"BUILD_TESTING": true,
"ENABLE_PROXY_TESTS": false,
"BUILD_SAMPLES": true,
"BUILD_PERFORMANCE_TESTS": true
}
},
{
"name": "x64-static-debug-tests-curl",
"displayName": "x64 Debug With Tests, static, libcurl",
"description": "Windows x64 Debug build with Tests configured",
"inherits": "x64-static-debug-tests",
"cacheVariables": {
"BUILD_TRANSPORT_CURL": true
}
},
{
"name": "x64-static-debug-tests-winhttp",
"displayName": "x64 Debug With Tests, static, winhttp",
"description": "Windows x64 Debug build with Tests configured",
"inherits": "x64-static-debug-tests",
"cacheVariables": {
"BUILD_TRANSPORT_WINHTTP": true
}
},
{
"name": "x64-static-debug-tests-OpenSSL111",
"displayName": "x64 Debug With Tests, static, OpenSSL 1.1.1, libcurl",
"description": "Windows x64 Debug build with Tests configured on OpenSSL 1.1.1",
"inherits": "x64-static-debug-tests",
"cacheVariables": {
"VCPKG_OVERLAY_PORTS": "${sourceDir}\\vcpkg-custom-ports"
}
},
{
"name": "x86-static-release-tests-curl",
"displayName": "x86 Release With Tests, static, libcurl",
"description": "Windows x86 Release build with Tests configured",
"inherits": "x86-static-release-tests",
"cacheVariables": {
"BUILD_TRANSPORT_CURL": true
}
},
{
"name": "x86-release-tests",
"displayName": "x86 Release With Tests (Note: Does not link because it sets BUILD_TRANSPORT_CUSTOM)",
"inherits": "x86-release",
"cacheVariables": {
"BUILD_TESTING": true,
"BUILD_TRANSPORT_CURL": true,
"BUILD_TRANSPORT_CUSTOM": true,
"BUILD_TRANSPORT_WINHTTP": true,
"BUILD_PERFORMANCE_TESTS": true
}
},
{
"name": "x64-release-tests",
"displayName": "x64 Release With Tests (Note: Does not link because it sets BUILD_TRANSPORT_CUSTOM)",
"inherits": "x64-release",
"cacheVariables": {
"BUILD_TESTING": true,
"BUILD_TRANSPORT_CURL": true,
"BUILD_TRANSPORT_CUSTOM": true,
"BUILD_TRANSPORT_WINHTTP": true,
"BUILD_PERFORMANCE_TESTS": true,
"BUILD_SAMPLES": true
}
},
{
"name": "x64-static-debug-perftests",
"displayName": "x64 Debug static With Perf Tests and samples",
"inherits": "x64-static-debug-tests",
"cacheVariables": {
"BUILD_TRANSPORT_CURL": true,
"BUILD_TRANSPORT_WINHTTP": true,
"BUILD_PERFORMANCE_TESTS": true,
"BUILD_SAMPLES": true
}
},
{
"name": "x64-static-release-perftests",
"displayName": "x64 Release With Perf Tests, static",
"inherits": "x64-static-release",
"cacheVariables": {
"INSTALL_GTEST": false,
"BUILD_TESTING": true,
"BUILD_TRANSPORT_CURL": true,
"BUILD_TRANSPORT_WINHTTP": true,
"BUILD_PERFORMANCE_TESTS": true,
"BUILD_SAMPLES": true
}
},
{
"name": "linux-basic-gcc9",
"displayName": "Linux GCC 9",
"description": "Using compilers: C = /usr/bin/gcc-9, CXX = /usr/bin/g++-9",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_C_COMPILER": "/usr/bin/gcc-9",
"CMAKE_CXX_COMPILER": "/usr/bin/g++-9"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "linux-gcc9-debug",
"displayName": "Linux GCC 9 Debug",
"inherits": "linux-basic-gcc9",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "linux-gcc9-debug-tests",
"inherits": "linux-gcc9-debug",
"displayName": "Linux GCC 9 Debug+Tests",
"cacheVariables": {
"BUILD_TESTING": "true"
}
},
{
"name": "linux-basic-clang-11",
"displayName": "Linux clang-11",
"description": "Using compilers: C = /usr/bin/clang-11, CXX = /usr/bin/clang++-11",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_C_COMPILER": "/usr/bin/clang-11",
"CMAKE_CXX_COMPILER": "/usr/bin/clang++-11"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "linux-clang-11-debug",
"displayName": "Linux clang 11 Debug",
"inherits": "linux-basic-clang-11",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "linux-clang-11-debug-tests",
"inherits": "linux-clang-11-debug",
"displayName": "Linux clang 11 Debug+Tests",
"cacheVariables": {
"BUILD_TESTING": "true"
}
},
{
"name": "linux-basic-g++",
"displayName": "Linux G++",
"description": "Using compilers: C = /usr/bin/cc, CXX = /usr/bin/c++",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_C_COMPILER": "/usr/bin/cc",
"CMAKE_CXX_COMPILER": "/usr/bin/c++"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "linux-g++-debug",
"displayName": "Linux c++ Debug",
"inherits": "linux-basic-g++",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "linux-g++-debug-tests",
"inherits": "linux-g++-debug",
"displayName": "Linux c++ Debug+Tests",
"cacheVariables": {
"BUILD_TESTING": "true"
}
},
{
"name": "generate-doxygen",
"displayName": "zz-Generate Doxygen",
"inherits": "x64-static",
"cacheVariables": {
"BUILD_DOCUMENTATION": true
}
}
]
}