Warning, /network/konversation/CMakePresets.json is written in an unsupported language. File is not indexed.
0001 { 0002 "version": 2, 0003 "configurePresets": [ 0004 { 0005 "name": "dev", 0006 "displayName": "Build as debug", 0007 "generator": "Ninja", 0008 "binaryDir": "${sourceDir}/build", 0009 "cacheVariables": { 0010 "CMAKE_BUILD_TYPE": "Debug", 0011 "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" 0012 } 0013 }, 0014 { 0015 "name": "asan", 0016 "displayName": "Build with Asan support.", 0017 "generator": "Ninja", 0018 "binaryDir": "${sourceDir}/build-asan", 0019 "cacheVariables": { 0020 "CMAKE_BUILD_TYPE": "Debug", 0021 "ECM_ENABLE_SANITIZERS" : "'address;undefined'", 0022 "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" 0023 } 0024 }, 0025 { 0026 "name": "unity", 0027 "displayName": "Build with CMake unity support.", 0028 "generator": "Ninja", 0029 "binaryDir": "${sourceDir}/build-unity", 0030 "cacheVariables": { 0031 "CMAKE_BUILD_TYPE": "Debug", 0032 "USE_UNITY_CMAKE_SUPPORT": "ON", 0033 "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" 0034 } 0035 }, 0036 { 0037 "name": "release", 0038 "displayName": "Build as release mode.", 0039 "generator": "Ninja", 0040 "binaryDir": "${sourceDir}/build-release", 0041 "cacheVariables": { 0042 "CMAKE_BUILD_TYPE": "Release" 0043 } 0044 }, 0045 { 0046 "name": "profile", 0047 "displayName": "profile", 0048 "generator": "Ninja", 0049 "binaryDir": "${sourceDir}/build-profile", 0050 "cacheVariables": { 0051 "CMAKE_BUILD_TYPE": "RelWithDebInfo", 0052 "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" 0053 } 0054 }, 0055 { 0056 "name": "clazy", 0057 "displayName": "clazy", 0058 "generator": "Ninja", 0059 "binaryDir": "${sourceDir}/build-clazy", 0060 "cacheVariables": { 0061 "CMAKE_BUILD_TYPE": "Debug" 0062 }, 0063 "environment": { 0064 "CXX": "clazy", 0065 "CCACHE_DISABLE": "ON" 0066 } 0067 } 0068 0069 ], 0070 "buildPresets": [ 0071 { 0072 "name": "dev", 0073 "configurePreset": "dev" 0074 }, 0075 { 0076 "name": "release", 0077 "configurePreset": "release" 0078 }, 0079 { 0080 "name": "asan", 0081 "configurePreset": "asan" 0082 }, 0083 { 0084 "name": "unity", 0085 "configurePreset": "unity" 0086 }, 0087 { 0088 "name": "clazy", 0089 "configurePreset": "clazy", 0090 "environment": { 0091 "CLAZY_CHECKS" : "level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo", 0092 "CCACHE_DISABLE" : "ON" 0093 } 0094 } 0095 ], 0096 "testPresets": [ 0097 { 0098 "name": "dev", 0099 "configurePreset": "dev", 0100 "output": {"outputOnFailure": true}, 0101 "execution": {"noTestsAction": "error", "stopOnFailure": false} 0102 }, 0103 { 0104 "name": "asan", 0105 "configurePreset": "asan", 0106 "output": {"outputOnFailure": true}, 0107 "execution": {"noTestsAction": "error", "stopOnFailure": true} 0108 } 0109 ] 0110 }