b1923a490c
* split pipeline * add dedicated doc build step * parallel builds * fix permissions * rm push trigger * mv gcc ubuntu * add windows build * always build the docs * doc alignment * checkout recursive * depend on builds for documentation * set standard via cmake * update libCZI to main * pretty_function win32 * version history update * disable windows release build missing dependencies for doc generation trigger ci on push to main adapt doc-gen job require only doxygen
88 lines
1.9 KiB
JSON
88 lines
1.9 KiB
JSON
{
|
|
"version": 3,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 21,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "default",
|
|
"hidden": true,
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
|
"cacheVariables": {
|
|
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
|
|
"FETCHCONTENT_FULLY_DISCONNECTED": "OFF",
|
|
"CMAKE_VERBOSE_MAKEFILE": "ON",
|
|
"PIXELARIUM_BUILD_UNITTESTS": "ON",
|
|
"PIXELARIUM_BUILD_DOCS": "OFF",
|
|
"PIXELARIUM_BUILD_DOCS_ONLY": "OFF"
|
|
}
|
|
},
|
|
{
|
|
"name": "clang-release",
|
|
"inherits": "default",
|
|
"cacheVariables": {
|
|
"CMAKE_C_COMPILER": "clang",
|
|
"CMAKE_CXX_COMPILER": "clang++",
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
}
|
|
},
|
|
{
|
|
"name": "clang-debug",
|
|
"inherits": "default",
|
|
"cacheVariables": {
|
|
"CMAKE_C_COMPILER": "clang",
|
|
"CMAKE_CXX_COMPILER": "clang++",
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
{
|
|
"name": "gcc-release",
|
|
"inherits": "default",
|
|
"cacheVariables": {
|
|
"CMAKE_C_COMPILER": "gcc",
|
|
"CMAKE_CXX_COMPILER": "g++",
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
}
|
|
},
|
|
{
|
|
"name": "gcc-debug",
|
|
"inherits": "default",
|
|
"cacheVariables": {
|
|
"CMAKE_C_COMPILER": "gcc",
|
|
"CMAKE_CXX_COMPILER": "g++",
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "default",
|
|
"hidden": true,
|
|
"jobs": 10
|
|
},
|
|
{
|
|
"name": "clang-release",
|
|
"inherits": "default",
|
|
"configurePreset": "clang-release"
|
|
},
|
|
{
|
|
"name": "clang-debug",
|
|
"inherits": "default",
|
|
"configurePreset": "clang-debug"
|
|
},
|
|
{
|
|
"name": "gcc-release",
|
|
"inherits": "default",
|
|
"configurePreset": "gcc-release"
|
|
},
|
|
{
|
|
"name": "gcc-debug",
|
|
"inherits": "default",
|
|
"configurePreset": "gcc-debug"
|
|
}
|
|
]
|
|
}
|