Warning, /libraries/baloo-widgets/CMakePresets.json is written in an unsupported language. File is not indexed.

0001 {
0002     "version": 1,
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 }