Files
NASM/wayland/CMakePresets.json
Пытков Роман 2332be6293 Простое окно
2025-09-25 23:50:14 +03:00

23 lines
678 B
JSON

{
"version": 8,
"configurePresets": [
{
"name": "debug-gcc",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_C_COMPILER": "/usr/bin/gcc",
"CMAKE_CXX_COMPILER": "/usr/bin/g++",
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "release-gcc",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_C_COMPILER": "/usr/bin/gcc",
"CMAKE_CXX_COMPILER": "/usr/bin/g++",
"CMAKE_BUILD_TYPE": "Release"
}
}
]
}