This repository has been archived on 2025-12-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SystemC-Components-Test/CMakePresets.json
T

72 lines
2.0 KiB
JSON
Raw Normal View History

2024-07-06 10:07:51 +02:00
{
"version": 3,
"vendor": {
"conan": {}
},
"cmakeMinimumRequired": {
"major": 3,
"minor": 24,
"patch": 0
},
"configurePresets": [
2025-09-12 12:31:12 +02:00
{
2025-09-05 08:36:02 +02:00
"name": "Base",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
2024-07-06 10:07:51 +02:00
"cacheVariables": {
"CMAKE_POLICY_DEFAULT_CMP0091": "NEW",
2025-11-08 19:15:25 +01:00
"CMAKE_CXX_STANDARD": "20",
2025-09-05 08:36:02 +02:00
"CMAKE_INSTALL_PREFIX": "${sourceDir}/install/${presetName}",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
2025-03-16 18:50:10 +01:00
"CMAKE_PROJECT_TOP_LEVEL_INCLUDES": "cmake-conan/conan_provider.cmake",
2025-10-21 16:52:01 +02:00
"CONAN_HOST_PROFILE": "auto-cmake",
"CONAN_BUILD_PROFILE": "conan_host_profile"
2025-09-05 08:36:02 +02:00
}
},
{
"name": "Debug",
"inherits": "Base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
2025-11-28 15:10:17 +01:00
{
"name": "DebugWFormat",
"inherits": "Base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"ENABLE_CLANG_FORMAT": "ON"
}
},
{
"name": "DebugCXX20",
"inherits": "Base",
"cacheVariables": {
"CMAKE_CXX_STANDARD": "20",
"CMAKE_BUILD_TYPE": "Debug"
}
},
2024-07-06 10:07:51 +02:00
{
"name": "RelWithDebInfo",
2025-09-05 08:42:34 +02:00
"inherits": "Base",
2024-07-06 10:07:51 +02:00
"cacheVariables": {
2025-09-05 08:36:02 +02:00
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
2024-07-06 10:07:51 +02:00
}
},
{
"name": "Release",
2025-09-05 08:42:34 +02:00
"inherits": "Base",
2024-07-06 10:07:51 +02:00
"cacheVariables": {
2025-09-05 08:36:02 +02:00
"CMAKE_BUILD_TYPE": "Release"
2025-03-28 07:01:45 +01:00
}
2024-07-06 10:07:51 +02:00
}
2025-09-12 12:31:12 +02:00
],
"testPresets": [
{
"name": "test-all",
"description": "run all test with Debug build",
"displayName": "",
"configurePreset": "Debug"
}
2024-07-06 10:07:51 +02:00
]
}