Files
Ultralight-SDK/CMakePresets.json
Andrew Zambazos a2784f684b moved to root
2026-06-11 14:09:53 +12:00

42 lines
931 B
JSON

{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 15,
"patch": 0
},
"configurePresets": [
{
"name": "Release",
"displayName": "Release",
"description": "Release build configuration",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/out",
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "Debug",
"displayName": "Debug",
"description": "Debug build configuration",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/out",
"CMAKE_BUILD_TYPE": "Debug"
}
}
],
"buildPresets": [
{
"name": "Release",
"configurePreset": "Release",
"targets": ["install"]
},
{
"name": "Debug",
"configurePreset": "Debug",
"targets": ["install"]
}
]
}