Integrating into Seele
This commit is contained in:
+18
-14
@@ -36,10 +36,28 @@
|
||||
"description": "Debug build without sanitizers",
|
||||
"binaryDir": "${sourceDir}/build",
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER": "clang",
|
||||
"CMAKE_CXX_COMPILER": "clang++",
|
||||
"CMAKE_BUILD_TYPE": "Debug",
|
||||
"CMAKE_INSTALL_PREFIX": "C:/Program Files/Seele"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "debug-asan",
|
||||
"displayName": "Debug (ASan)",
|
||||
"description": "Debug build with Address Sanitizer",
|
||||
"binaryDir": "${sourceDir}/build",
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER": "clang",
|
||||
"CMAKE_CXX_COMPILER": "clang++",
|
||||
"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"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "debug-mac",
|
||||
"displayName": "Debug Mac (no ASan)",
|
||||
@@ -65,20 +83,6 @@
|
||||
"CMAKE_SHARED_LINKER_FLAGS": "-fsanitize=address",
|
||||
"CMAKE_INSTALL_PREFIX": "C:/Program Files/Seele"
|
||||
}
|
||||
},
|
||||
{
|
||||
"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": [
|
||||
|
||||
Reference in New Issue
Block a user