{ "version": 3, "configurePresets":[ { "name": "basic", "hidden": true, "cacheVariables": { "CMAKE_C_COMPILER": "gcc", "CMAKe_CXX_COMPILER": "g++", "CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake", "CMAKE_EXPORT_COMPILE_COMMANDS": "ON", "ENABLE_PROFILING": "ON" } }, { "name": "debug", "inherits": "basic", "binaryDir": "${sourceDir}/build/debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", "CMAKE_INSTALL_PREFIX": "${sourceDir}/dist/debug" } }, { "name": "release", "inherits": "basic", "binaryDir": "${sourceDir}/build/release", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", "CMAKE_INSTALL_PREFIX": "${sourceDir}/dist/release" } } ], "buildPresets": [ { "name": "release", "configurePreset": "release" } ] }