based

Opinionated utility library
git clone git://git.dimitrijedobrota.com/based.git
Log | Files | Refs | README | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |

CMakePresets.json (5856B)


1 { 2 "version": 2, 3 "cmakeMinimumRequired": { 4 "major": 3, 5 "minor": 14, 6 "patch": 0 7 }, 8 "configurePresets": [ 9 { 10 "name": "dev-mode", 11 "hidden": true, 12 "cacheVariables": { 13 "based_DEVELOPER_MODE": "ON", 14 "VCPKG_MANIFEST_FEATURES": "test" 15 } 16 }, 17 { 18 "name": "vcpkg", 19 "hidden": true, 20 "cacheVariables": { 21 "CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" 22 } 23 }, 24 { 25 "name": "vcpkg-win64-static", 26 "hidden": true, 27 "cacheVariables": { 28 "VCPKG_TARGET_TRIPLET": "x64-windows-static-md" 29 } 30 }, 31 { 32 "name": "cppcheck", 33 "hidden": true, 34 "cacheVariables": { 35 "CMAKE_CXX_CPPCHECK": "cppcheck;--inline-suppr" 36 } 37 }, 38 { 39 "name": "clang-tidy", 40 "hidden": true, 41 "cacheVariables": { 42 "CMAKE_CXX_CLANG_TIDY": "clang-tidy;--header-filter=^${sourceDir}/" 43 } 44 }, 45 { 46 "name": "ci-std", 47 "description": "This preset makes sure the project actually builds with at least the specified standard", 48 "hidden": true, 49 "cacheVariables": { 50 "CMAKE_CXX_EXTENSIONS": "OFF", 51 "CMAKE_CXX_STANDARD": "20", 52 "CMAKE_CXX_STANDARD_REQUIRED": "ON" 53 } 54 }, 55 { 56 "name": "flags-gcc-clang", 57 "description": "These flags are supported by both GCC and Clang", 58 "hidden": true, 59 "cacheVariables": { 60 "CMAKE_CXX_FLAGS": "-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -D_GLIBCXX_ASSERTIONS=1 -fstack-protector-strong -fcf-protection=full -fstack-clash-protection -Wall -Wextra -Wpedantic -Wconversion -Wsign-conversion -Wcast-qual -Wformat=2 -Wundef -Werror=float-equal -Wshadow -Wcast-align -Wunused -Wnull-dereference -Wdouble-promotion -Wimplicit-fallthrough -Wextra-semi -Woverloaded-virtual -Wnon-virtual-dtor -Wold-style-cast", 61 "CMAKE_EXE_LINKER_FLAGS": "-Wl,--allow-shlib-undefined,--as-needed,-z,noexecstack,-z,relro,-z,now,-z,nodlopen", 62 "CMAKE_SHARED_LINKER_FLAGS": "-Wl,--allow-shlib-undefined,--as-needed,-z,noexecstack,-z,relro,-z,now,-z,nodlopen" 63 } 64 }, 65 { 66 "name": "flags-appleclang", 67 "hidden": true, 68 "cacheVariables": { 69 "CMAKE_CXX_FLAGS": "-fstack-protector-strong -Wall -Wextra -Wpedantic -Wconversion -Wsign-conversion -Wcast-qual -Wformat=2 -Wundef -Werror=float-equal -Wshadow -Wcast-align -Wunused -Wnull-dereference -Wdouble-promotion -Wimplicit-fallthrough -Wextra-semi -Woverloaded-virtual -Wnon-virtual-dtor -Wold-style-cast" 70 } 71 }, 72 { 73 "name": "flags-msvc", 74 "description": "Note that all the flags after /W4 are required for MSVC to conform to the language standard", 75 "hidden": true, 76 "cacheVariables": { 77 "CMAKE_CXX_FLAGS": "/sdl /guard:cf /utf-8 /diagnostics:caret /w14165 /w44242 /w44254 /w44263 /w34265 /w34287 /w44296 /w44365 /w44388 /w44464 /w14545 /w14546 /w14547 /w14549 /w14555 /w34619 /w34640 /w24826 /w14905 /w14906 /w14928 /w45038 /W4 /permissive- /volatile:iso /Zc:inline /Zc:preprocessor /Zc:enumTypes /Zc:lambda /Zc:__cplusplus /Zc:externConstexpr /Zc:throwingNew /EHsc", 78 "CMAKE_EXE_LINKER_FLAGS": "/machine:x64 /guard:cf", 79 "CMAKE_SHARED_LINKER_FLAGS": "/machine:x64 /guard:cf" 80 } 81 }, 82 { 83 "name": "ci-linux", 84 "inherits": ["flags-gcc-clang", "ci-std"], 85 "generator": "Unix Makefiles", 86 "hidden": true, 87 "cacheVariables": { 88 "CMAKE_BUILD_TYPE": "Release" 89 } 90 }, 91 { 92 "name": "ci-darwin", 93 "inherits": ["flags-appleclang", "ci-std"], 94 "generator": "Xcode", 95 "hidden": true, 96 "cacheVariables": { 97 "CMAKE_CATCH_DISCOVER_TESTS_DISCOVERY_MODE": "PRE_TEST" 98 } 99 }, 100 { 101 "name": "ci-win64", 102 "inherits": ["flags-msvc", "ci-std"], 103 "generator": "Visual Studio 17 2022", 104 "architecture": "x64", 105 "hidden": true 106 }, 107 { 108 "name": "coverage-linux", 109 "binaryDir": "${sourceDir}/build/coverage", 110 "inherits": "ci-linux", 111 "hidden": true, 112 "cacheVariables": { 113 "ENABLE_COVERAGE": "ON", 114 "CMAKE_BUILD_TYPE": "Coverage", 115 "CMAKE_CXX_FLAGS_COVERAGE": "-Og -g --coverage -fkeep-inline-functions -fkeep-static-functions", 116 "CMAKE_EXE_LINKER_FLAGS_COVERAGE": "--coverage", 117 "CMAKE_SHARED_LINKER_FLAGS_COVERAGE": "--coverage", 118 "CMAKE_MAP_IMPORTED_CONFIG_COVERAGE": "Coverage;RelWithDebInfo;Release;Debug;" 119 } 120 }, 121 { 122 "name": "ci-coverage", 123 "inherits": ["coverage-linux", "dev-mode", "vcpkg"], 124 "cacheVariables": { 125 "COVERAGE_HTML_COMMAND": "" 126 } 127 }, 128 { 129 "name": "ci-sanitize", 130 "binaryDir": "${sourceDir}/build/sanitize", 131 "inherits": ["ci-linux", "dev-mode", "vcpkg"], 132 "cacheVariables": { 133 "CMAKE_BUILD_TYPE": "Sanitize", 134 "CMAKE_CXX_FLAGS_SANITIZE": "-U_FORTIFY_SOURCE -O2 -g -fsanitize=address,undefined -fno-omit-frame-pointer -fno-common", 135 "CMAKE_MAP_IMPORTED_CONFIG_SANITIZE": "Sanitize;RelWithDebInfo;Release;Debug;" 136 } 137 }, 138 { 139 "name": "ci-build", 140 "binaryDir": "${sourceDir}/build", 141 "hidden": true 142 }, 143 { 144 "name": "ci-multi-config", 145 "description": "Speed up multi-config generators by generating only one configuration instead of the defaults", 146 "hidden": true, 147 "cacheVariables": { 148 "CMAKE_CONFIGURATION_TYPES": "Release" 149 } 150 }, 151 { 152 "name": "ci-macos", 153 "inherits": ["ci-build", "ci-darwin", "dev-mode", "ci-multi-config", "vcpkg"] 154 }, 155 { 156 "name": "ci-ubuntu", 157 "inherits": ["ci-build", "ci-linux", "clang-tidy", "vcpkg", "cppcheck", "dev-mode"] 158 }, 159 { 160 "name": "ci-windows", 161 "inherits": ["ci-build", "ci-win64", "dev-mode", "ci-multi-config", "vcpkg", "vcpkg-win64-static"] 162 } 163 ] 164 }