mirror of
https://github.com/OpenEtherCATsociety/SOEM.git
synced 2026-02-06 09:03:10 +08:00
39 lines
794 B
JSON
39 lines
794 B
JSON
{
|
|
"version": 6,
|
|
"configurePresets": [{
|
|
"name": "base",
|
|
"hidden": true,
|
|
"generator": "Ninja",
|
|
"binaryDir": "build/${presetName}",
|
|
"cacheVariables": {
|
|
"CMAKE_EXPORT_COMPILE_COMMANDS": true,
|
|
"CMAKE_COMPILE_WARNING_AS_ERROR": true,
|
|
"CMAKE_FIND_NO_INSTALL_PREFIX": true
|
|
}
|
|
}, {
|
|
"name": "docs",
|
|
"inherits": "base",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
|
}
|
|
}, {
|
|
"name": "default",
|
|
"inherits" : "base"
|
|
}],
|
|
"buildPresets": [{
|
|
"name": "default",
|
|
"configurePreset": "default"
|
|
}, {
|
|
"name": "docs",
|
|
"configurePreset": "docs",
|
|
"targets": ["sphinx-html"]
|
|
}],
|
|
"packagePresets": [{
|
|
"name": "default",
|
|
"configurePreset": "default",
|
|
"generators": [
|
|
"ZIP"
|
|
]
|
|
}]
|
|
}
|