c00c2c71ac
* scratch adding histogram to image views Histograms should come from some sort of histogram service. This is currently just a POC. * custom logger implementation w/o spdlog * missing cmake file * fix tests * use operator<< over direct stream exposure * rm print header * add threading test + refactor towards interface libraries omits the need for =target_include_directories= calls /everywhere/ * rm print header * rm constexpr * templated thread_pool * fix doxyfile * default enable doc building * czi reader refactor * rm erroneous include expression * clang-format * single lib include with PUBLIC visibility * compile imgui stdlib * clang format * documentation update centralize `LogLevelToString` to `ILog.hpp` update docs and examples
89 lines
2.0 KiB
JSON
89 lines
2.0 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": "ON",
|
|
"PIXELARIUM_BUILD_DOCS_ONLY": "OFF",
|
|
"PIXELARIUM_BUILD_EXAMPLES": "ON"
|
|
}
|
|
},
|
|
{
|
|
"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"
|
|
}
|
|
]
|
|
}
|