Files
Seele/CMakePresets.json
T

102 lines
2.9 KiB
JSON
Raw Normal View History

2025-05-16 13:04:43 +02:00
{
2025-08-23 18:10:09 +02:00
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 19,
"patch": 0
},
"configurePresets": [
{
"name": "release",
"displayName": "Release (no ASan)",
"description": "Release build without sanitizers",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_INSTALL_PREFIX": "C:/Program Files/Seele"
}
2025-05-16 13:04:43 +02:00
},
2025-08-23 18:10:09 +02:00
{
"name": "release-asan",
"displayName": "Release (ASan)",
"description": "Release build with Address Sanitizer",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_CXX_FLAGS": "-fsanitize=address -fno-omit-frame-pointer",
"CMAKE_C_FLAGS": "-fsanitize=address -fno-omit-frame-pointer",
"CMAKE_EXE_LINKER_FLAGS": "-fsanitize=address",
"CMAKE_SHARED_LINKER_FLAGS": "-fsanitize=address",
"CMAKE_INSTALL_PREFIX": "C:/Program Files/Seele"
}
},
{
"name": "debug",
"displayName": "Debug (no ASan)",
"description": "Debug build without sanitizers",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "C:/Program Files/Seele"
}
},
2026-03-16 16:52:43 +01:00
{
"name": "debug-mac",
"displayName": "Debug Mac (no ASan)",
"description": "Debug Mac build without sanitizers",
"binaryDir": "${sourceDir}/build",
"generator": "Xcode",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "C:/Program Files/Seele"
}
},
2025-08-23 18:10:09 +02:00
{
"name": "debug-asan",
"displayName": "Debug (ASan)",
"description": "Debug build with Address Sanitizer",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CXX_FLAGS": "-fsanitize=address -fno-omit-frame-pointer",
"CMAKE_C_FLAGS": "-fsanitize=address -fno-omit-frame-pointer",
"CMAKE_EXE_LINKER_FLAGS": "-fsanitize=address",
"CMAKE_SHARED_LINKER_FLAGS": "-fsanitize=address",
"CMAKE_INSTALL_PREFIX": "C:/Program Files/Seele"
}
}
],
"buildPresets": [
{
"name": "release",
"displayName": "Release (no ASan)",
2026-03-16 16:51:53 +01:00
"configurePreset": "release",
"jobs": 0
2025-08-23 18:10:09 +02:00
},
{
"name": "release-asan",
"displayName": "Release (ASan)",
2026-03-16 16:51:53 +01:00
"configurePreset": "release-asan",
"jobs": 0
2025-08-23 18:10:09 +02:00
},
{
"name": "debug",
"displayName": "Debug (no ASan)",
2026-03-16 16:51:53 +01:00
"configurePreset": "debug",
"jobs": 0
2025-08-23 18:10:09 +02:00
},
2026-03-16 16:52:43 +01:00
{
"name": "debug-mac",
"displayName": "Debug Mac (no ASan)",
2026-03-16 16:51:53 +01:00
"configurePreset": "debug-mac",
"jobs": 0
2026-03-16 16:52:43 +01:00
},
2025-08-23 18:10:09 +02:00
{
"name": "debug-asan",
"displayName": "Debug (ASan)",
2026-03-16 16:51:53 +01:00
"configurePreset": "debug-asan",
"jobs": 0
2025-08-23 18:10:09 +02:00
}
]
}