86Box/CMakePresets.json

64 lines
1.6 KiB
JSON
Raw Normal View History

{
2023-01-13 01:21:53 -05:00
"version": 2,
"cmakeMinimumRequired": {
"major": 3,
2023-01-13 01:21:53 -05:00
"minor": 20
},
"configurePresets": [
{
2023-01-13 01:21:53 -05:00
"name": "base",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
2023-01-13 01:21:53 -05:00
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/artifacts",
"CMAKE_EXPORT_COMPILE_COMMANDS": true,
"DEV_BRANCH": "OFF",
2023-01-13 01:21:53 -05:00
"NEW_DYNAREC": "OFF",
"QT": "ON"
},
2023-01-13 01:21:53 -05:00
"generator": "Ninja",
"hidden": true
},
{
"name": "regular",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
},
"inherits": "base"
},
{
"name": "optimized",
"cacheVariables": {
2023-01-13 01:21:53 -05:00
"CMAKE_BUILD_TYPE": "Optimized"
},
2023-01-13 01:21:53 -05:00
"inherits": "base"
},
{
"name": "debug",
"cacheVariables": {
2023-01-13 01:21:53 -05:00
"CMAKE_BUILD_TYPE": "Debug"
},
"inherits": "base"
},
{
"name": "development",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"DEV_BRANCH": "ON",
"NEW_DYNAREC": "OFF"
},
2023-01-13 01:21:53 -05:00
"inherits": "base"
},
{
"name": "experimental",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"DEV_BRANCH": "ON",
"NEW_DYNAREC": "ON"
},
2023-01-13 01:21:53 -05:00
"inherits": "base"
}
2023-01-13 01:21:53 -05:00
],
"buildPresets": [],
"testPresets": []
}